Objective C - Type Casting From NSString to Int

2020-08-09 06:16发布

I have this bit of Objective C code, where I am casting a NSString to an int:

NSString *a=@"123abc";
NSInteger b=(int) a;
NSLog(@"b: %d",b);

And the NSLog produces this output:

b: 18396

Can anyone explain to me why this is happening?

I was under the impression type casting a string to an integer would get the numerical value from the string.

4条回答
家丑人穷心不美
2楼-- · 2020-08-09 06:42

To get the numerical value use :

int val = [stringObj intValue];

or for NSInteger :

NSInteger val = [stringObj integerValue];
查看更多
ら.Afraid
3楼-- · 2020-08-09 06:45

Or with Objective-C literals syntax:

@([a intValue]);
查看更多
我欲成王,谁敢阻挡
4楼-- · 2020-08-09 06:57

When you cast an object to an integer you will get the pointer to the memory address. You can call to [a integerValue] to get the integer value of the string.

Also when casting it is better to use NSInteger instate of int. Because when using a 64 bit operating system a NSInteger will be 64 bit.

查看更多
狗以群分
5楼-- · 2020-08-09 07:02

You've got integer value of pointer to NSString object there. To parse string to integer you should do:

NSString *a = @"123abc";
NSInteger b = [a integerValue];
查看更多
登录 后发表回答