如何在NSLog中打印布尔标志?


Answers:


503

这是我的方法:

BOOL flag = YES;
NSLog(flag ? @"Yes" : @"No");

?: 是以下形式的三元条件运算符:

condition ? result_if_true : result_if_false

在适当的地方相应地替换实际的日志字符串。


55
也容易使它成为宏:#define StringFromBOOL(b) ((b) ? @"YES" : @"NO")
jscs 2011年

3
这怎么有这么多票?这不是如何记录布尔值,而是如何根据布尔值记录不同的值。
阿西2014年

7
@Acey:显然,人们(包括原始的提问者)对后者更感兴趣。如果要冒个险,那是因为直接打印值(0/1)并不是很有意义。
BoltClock

1
@BoltClock 0/1在日志输出中没有意义吗?我以为我们都是程序员,大声笑
Cbas 2016年

298

%d0为FALSE,1为TRUE。

BOOL b; 
NSLog(@"Bool value: %d",b);

要么

NSLog(@"bool %s", b ? "true" : "false");

根据数据类型的%@变化如下

For Strings you use %@
For int  you use %i
For float and double you use %f

16

布尔值只不过是整数,它们只是类型转换值,例如...

typedef signed char     BOOL; 

#define YES (BOOL)1
#define NO (BOOL)0

BOOL value = YES; 
NSLog(@"Bool value: %d",value);

如果输出为1,则为否


1
不,布尔是signed char。如果提供的值不是0或1,则您的表达式可能会计算错误。
CodaFi 2012年

不,BOOL的类型取决于您的编译器(32位和64位),并且通常与bool的类型不同。另一方面,bool是bool,它是标准类型,与带符号的char不同。
gnasher729

14

请注意,在Swift中,您可以

let testBool: Bool = true
NSLog("testBool = %@", testBool.description)

这将记录 testBool = true


在Swift中,您可以使用print()
德米特里

10

虽然这不是对Devang问题的直接答案,但我相信下面的宏对于希望登录BOOL的人非常有用。这将注销bool的值,并自动使用变量名称对其进行标记。

#define LogBool(BOOLVARIABLE) NSLog(@"%s: %@",#BOOLVARIABLE, BOOLVARIABLE ? @"YES" : @"NO" )

BOOL success = NO;
LogBool(success); // Prints out 'success: NO' to the console

success = YES;
LogBool(success); // Prints out 'success: YES' to the console

一个有用的宏,尤其是显示变量名的技巧。我个人不会使用BOOL作为参数名称,以免造成混淆。
jk7


4

我们可以通过四种方式检查

第一种方法是

BOOL flagWayOne = TRUE; 
NSLog(@"The flagWayOne result is - %@",flagWayOne ? @"TRUE":@"FALSE");

第二种方法是

BOOL flagWayTwo = YES; 
NSLog(@"The flagWayTwo result is - %@",flagWayTwo ? @"YES":@"NO");

第三种方法是

BOOL flagWayThree = 1;
NSLog(@"The flagWayThree result is - %d",flagWayThree ? 1:0);

第四种方法是

BOOL flagWayFour = FALSE; // You can set YES or NO here.Because TRUE = YES,FALSE = NO and also 1 is equal to YES,TRUE and 0 is equal to FALSE,NO whatever you want set here.
NSLog(@"The flagWayFour result is - %s",flagWayFour ? YES:NO);

2
NSArray *array1 = [NSArray arrayWithObjects:@"todd1", @"todd2", @"todd3", nil];
bool objectMembership = [array1 containsObject:@"todd1"];
NSLog(@"%d",objectMembership);  // prints 1 or 0

2

在Swift中,您可以简单地打印一个布尔值,它将显示为truefalse

let flag = true
print(flag) //true


0
//assuming b is BOOL. ternary operator helps us in any language.
NSLog(@"result is :%@",((b==YES)?@"YES":@"NO"));

(b == YES)与b相同。如所列,您依赖编译器的优化器将其缩减为(b?@“ YES”:@“ NO”)
Armand
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.