In Objective-C, are int variables that haven't

2020-04-14 01:25发布

If I have this in my .h file:

int index;

And then in the .m file I have:

if (index == nil)

and I haven't assigned a value to index, will that come up true?

EDIT
I guess nil is only used for objects. So what is the state of an int that hasn't been assigned a value?

4条回答
够拽才男人
2楼-- · 2020-04-14 02:04

nil is a specific value reserved for Objective-C object pointers. It is very similar to NULL (0) but has different semantics when used with message passing.

local primitive data types like int's are not initialized in Objective-C. The value of index will not be defined until you write to it.

void foo () {
   //initialize local variable
   int x = 5;
}

//initialise static variable
static int var = 6; 
查看更多
叛逆
3楼-- · 2020-04-14 02:05

The variable is technically undefined (may have any value) before you assign it a value. Most likely, it will be equal to zero. Also, both nil and NULL are defined to zero. However, this comparison is not recommended. You should only use nil when comparing pointers (it is not intended to be used with primitives).

查看更多
虎瘦雄心在
4楼-- · 2020-04-14 02:07

There is no such thing as "nil" for ints. That's an object value. As for what variables are initialized to by default:

  • Non-static local variables are not initialized to any defined value (in practice, they will usually have whatever bit pattern was previously in the memory they're occupying)
  • Static variables are initialized to 0
  • Global variables are initialized to 0
  • Instance variables are initialized to 0

Note that the first rule above also applies to local object variables. They will not be nil-initialized for you. (Instance variables with object types will be, though.)

查看更多
Deceive 欺骗
5楼-- · 2020-04-14 02:17

The value of an integer that hasn't yet been assigned depends on its declaration - an int with static storage duration is zero if you don't assign it anything else. An int with automatic or allocated storage duration could have any value if you don't explicitly initialize it.

By the way, putting an object declaration in your header like that is bound to cause you pain later.

查看更多
登录 后发表回答