【发布时间】:2011-09-15 13:06:28
【问题描述】:
有没有办法在 NSLog 中打印布尔标志的值?
【问题讨论】:
标签: ios objective-c cocoa-touch
有没有办法在 NSLog 中打印布尔标志的值?
【问题讨论】:
标签: ios objective-c cocoa-touch
BOOL curBool = FALSE;
NSLog(@"curBool=%d", curBool);
->curBool=0
char* boolToStr(bool curBool){
return curBool ? "True": "False";
}
BOOL curBool = FALSE;
NSLog(@"curBool=%s", boolToStr(curBool));
->curBool=False
【讨论】:
在 Swift 中,您可以简单地打印一个布尔值,它将显示为 true 或 false。
let flag = true
print(flag) //true
【讨论】:
虽然这不是对 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 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);
【讨论】:
你可以这样做:
BOOL flag = NO;
NSLog(flag ? @"YES" : @"NO");
【讨论】:
%d,0 为假,1 为真。
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
【讨论】:
我是这样做的:
BOOL flag = YES;
NSLog(flag ? @"Yes" : @"No");
?: 是形式的三元条件运算符:
condition ? result_if_true : result_if_false
在适当的地方相应地替换实际的日志字符串。
【讨论】:
#define StringFromBOOL(b) ((b) ? @"YES" : @"NO")
请注意,在 Swift 中,您可以这样做
let testBool: Bool = true
NSLog("testBool = %@", testBool.description)
这将记录testBool = true
【讨论】:
print()。
NSArray *array1 = [NSArray arrayWithObjects:@"todd1", @"todd2", @"todd3", nil];
bool objectMembership = [array1 containsObject:@"todd1"];
NSLog(@"%d",objectMembership); // prints 1 or 0
【讨论】:
//assuming b is BOOL. ternary operator helps us in any language.
NSLog(@"result is :%@",((b==YES)?@"YES":@"NO"));
【讨论】:
Apple 的 FixIt 提供了 %hhd,它正确地给出了我的 BOOL 值。
【讨论】:
布尔值只是整数,它们只是类型转换的值,例如...
typedef signed char BOOL;
#define YES (BOOL)1
#define NO (BOOL)0
BOOL value = YES;
NSLog(@"Bool value: %d",value);
如果输出为1,则为YES,否则为NO
【讨论】:
signed char。如果提供了 0 或 1 以外的值,您的表达式可能会计算错误。