开发者

In Objective-C, are int variables that haven't been assigned a value nil?

开发者 https://www.devze.com 2023-01-04 21:27 出处:网络
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?

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 i开发者_StackOverflow中文版nt that hasn't been assigned a value?


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.)


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).


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.


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; 
0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号