我想将整数转换为BOOLEAN 0
和1
YES
NO
我的代码:
NSNumber *num = 0;
BOOL myBool = [num boolValue];
NSLog(@"bool is: %@",myBool);
它给出的输出为(null)
有什么问题?
我想将整数转换为BOOLEAN 0
和1
YES
NO
我的代码:
NSNumber *num = 0;
BOOL myBool = [num boolValue];
NSLog(@"bool is: %@",myBool);
它给出的输出为(null)
有什么问题?
首先,您的初始化NSNumber
不正确。您应该使用以下+numberWith:
定义的类方法之一NSNumber
:
+ (NSNumber *)numberWithChar:(char)value;
+ (NSNumber *)numberWithUnsignedChar:(unsigned char)value;
+ (NSNumber *)numberWithShort:(short)value;
+ (NSNumber *)numberWithUnsignedShort:(unsigned short)value;
+ (NSNumber *)numberWithInt:(int)value;
+ (NSNumber *)numberWithUnsignedInt:(unsigned int)value;
+ (NSNumber *)numberWithLong:(long)value;
+ (NSNumber *)numberWithUnsignedLong:(unsigned long)value;
+ (NSNumber *)numberWithLongLong:(long long)value;
+ (NSNumber *)numberWithUnsignedLongLong:(unsigned long long)value;
+ (NSNumber *)numberWithFloat:(float)value;
+ (NSNumber *)numberWithDouble:(double)value;
+ (NSNumber *)numberWithBool:(BOOL)value;
+ (NSNumber *)numberWithInteger:(NSInteger)value NS_AVAILABLE(10_5, 2_0);
+ (NSNumber *)numberWithUnsignedInteger:(NSUInteger)value NS_AVAILABLE(10_5, 2_0);
BOOL
s 只是signed char
s,因此您不能使用%@
格式说明符,但您可以使用任何整数格式说明符,例如%d
,%i
或%c
.
但是,要输出YES
or NO
,您需要使用字符串:
NSLog(@"bool is: %@", (myBool) ? @"YES" : @"NO");
鉴于分配不正确,NSNumber
您是否真的要创建一个包含整数的对象,或者您的标题问题“将 int 转换为 BOOL”是否正确?
int
如果是后者,则使用该值转换 an0
或转换1
为BOOL
您只需转换:
int num = ...; // num is 0 or 1
BOOL myBool = (BOOL)num; // myBool is NO or YES
然而,更好的转换是:
BOOL myBool = num != 0; // myBool is NO for 0, YES for anything else
因为这遵循了 Obj-C(和 C)的概念,即零为假,非零为真。
如果您希望将BOOL
值转换为字符串"YES"
,"NO"
那么这个简单的函数将有效地完成它:
NS_INLINE NSString *BoolToStr(BOOL b) { return b ? @"YES" : @"NO"; }
只需将其放在方便的标题中,然后在需要的地方导入即可。
隐蔽Int
到BOOL
将值为 0 或 1 的 int 转换为刚转换的 BOOL
NSNumber *num = [NSNumber numberWithInt:0]; // num is 0 or 1
BOOL myBool = [num boolValue]; // myBool is NO or YES
正如 sch 提到的,你在这里搞砸了:
NSNumber *num = 0;
正如@jacob Relkin 指出的那样。你用错了NSNumber
。
其次,boolValue
可以转换NSString
和NSNumber
-> BOOL
。boolValue
作品:
跳过初始空格字符 (whitespaceSet),或可选的 -/+ 符号后跟零。遇到 "Y"、"y"、"T"、"t" 或数字1-9之一时返回 YES 。它忽略任何尾随字符。
因为int
你可以用它作为boolean
布尔 a = 数;//将表现得就像 boolValue。
我不知道我对此是否完全正确,但是当您将 NSNumber 分配为“0”时,如果您想要数字,则应给出值“nil”,您应该选择“@0”或“@1”或使用方法“numberwithint”