มีวิธีพิมพ์ค่าบูลีนบูลใน NSLog หรือไม่?
มีวิธีพิมพ์ค่าบูลีนบูลใน NSLog หรือไม่?
คำตอบ:
นี่คือวิธีที่ฉันทำ:
BOOL flag = YES;
NSLog(flag ? @"Yes" : @"No");
?:
เป็นตัวดำเนินการเงื่อนไขที่ประกอบไปด้วยของแบบฟอร์ม:
condition ? result_if_true : result_if_false
แทนสตริงการบันทึกจริงตามที่เหมาะสม
%d
, 0คือ 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
บูลีนไม่ได้มีอะไรนอกจากจำนวนเต็มเท่านั้นพวกมันเป็นเพียงประเภทค่าที่หล่อเช่น ...
typedef signed char BOOL;
#define YES (BOOL)1
#define NO (BOOL)0
BOOL value = YES;
NSLog(@"Bool value: %d",value);
ถ้าเอาต์พุตคือ 1, YES ไม่เช่นนั้น
signed char
ไม่มีบูลคือ นิพจน์ของคุณอาจประเมินอย่างไม่ถูกต้องหากมีการให้ค่าอื่นที่ไม่ใช่ 0 หรือ 1
โปรดทราบว่าใน Swift คุณสามารถทำได้
let testBool: Bool = true
NSLog("testBool = %@", testBool.description)
นี้จะเข้าสู่ระบบ testBool = true
print()
ในสวิฟท์คุณก็สามารถใช้
ในขณะที่นี่ไม่ใช่คำตอบโดยตรงสำหรับคำถามของ Devang ฉันเชื่อว่ามาโครด้านล่างจะมีประโยชน์มากสำหรับผู้ที่ต้องการบันทึกบูล สิ่งนี้จะออกจากระบบค่าบูลเช่นเดียวกับการติดฉลากโดยอัตโนมัติด้วยชื่อของตัวแปร
#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
FixIt ของ Apple ให้% hhd ซึ่งให้ค่าบูลของฉันอย่างถูกต้อง
เราสามารถตรวจสอบได้สี่วิธี
วิธีแรกคือ
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);
NSArray *array1 = [NSArray arrayWithObjects:@"todd1", @"todd2", @"todd3", nil];
bool objectMembership = [array1 containsObject:@"todd1"];
NSLog(@"%d",objectMembership); // prints 1 or 0
ในสวิฟท์คุณก็สามารถพิมพ์ค่าบูลีนและมันจะแสดงเป็นหรือtrue
false
let flag = true
print(flag) //true
นี่คือวิธีที่คุณสามารถทำได้:
BOOL flag = NO;
NSLog(flag ? @"YES" : @"NO");
//assuming b is BOOL. ternary operator helps us in any language.
NSLog(@"result is :%@",((b==YES)?@"YES":@"NO"));
#define StringFromBOOL(b) ((b) ? @"YES" : @"NO")