ios iphone开发 int,NSInteger,NSUInteger,NSNumber

ios iphone开发 int,NSInteger,NSUInteger,NSNumber,第1张

概述1.当需要使用int类型的变量的时候,可以像写C的程序一样,用int,也可以用NSInteger,但更推荐使用NSInteger,因为这样就不用考虑设备是32位的还是64位的。 2.NSUInteger是无符号的,即没有负数,NSInteger是有符号的。 3.有人说既然都有了NSInteger等这些基础类型了为什么还要有NSNumber?它们的功能当然是不同的。   NSInteger是基础类型

1.当需要使用int类型的变量的时候,可以像写C的程序一样,用int,也可以用NSInteger,但更推荐使用NSInteger,因为这样就不用考虑设备是32位的还是64位的。

2.NSUInteger是无符号的,即没有负数,NSInteger是有符号的。

3.有人说既然都有了NSInteger等这些基础类型了为什么还要有NSNumber?它们的功能当然是不同的。

  NSInteger是基础类型,但是NSNumber是一个类。如果想要存储一个数值,直接用NSInteger是不行的,比如在一个Array里面这样用: @H_403_37@
 NSArray *array = [[NSArray alloc]init];
[array addobject:3];//会编译错误
  这样是会引发编译错误的,因为NSArray里面放的需要是一个类,但‘3’不是。这个时候需要用到NSNumber: @H_403_37@
 NSArray *array = [[NSArray alloc]init];
[array addobject:[NSNumber numberWithInt:3]];

Cocoa提供了NSNumber类来包装(即以对象形式实现)基本数据类型。
例如以下创建方法:

+  (NSNumber  * ) numberWithChar: ( char ) value;
) numberWithInt: ( int ) numberWithfloat: ( float ) numberWithBool: (BOol) value;

将基本类型数据封装到NSNumber中后,就可以通过下面的实例方法重新获取它:

( ) charValue;
) intValue;
) floatValue;
(BOol) boolValue;
(Nsstring  ) stringValue;

原文:http://blog.sina.com.cn/s/blog_83940dfb0100y1pl.HTML

总结

以上是内存溢出为你收集整理的ios iphone开发 int,NSInteger,NSUInteger,NSNumber全部内容,希望文章能够帮你解决ios iphone开发 int,NSInteger,NSUInteger,NSNumber所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1059241.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-25
下一篇 2022-05-25

发表评论

登录后才能评论

评论列表(0条)

保存