NSLogにBooleanフラグの値を表示する方法はありますか?
これが私のやり方です。
BOOL flag = YES;
NSLog(flag ? @"Yes" : @"No");
?:
は、次の形式の3項条件演算子です。
condition ? result_if_true : result_if_false
必要に応じて、実際のログ文字列を適宜置き換えます。
%d
、は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、そうでない場合はNO
Swiftでは、あなただけができることに注意してください
let testBool: Bool = true
NSLog("testBool = %@", testBool.description)
これはtestBool = 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
AppleのFixItが%hhdを提供し、それが私のBOOLの値を正しく与えてくれました。
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);
Swiftでは、単純にブール値を印刷することができ、それはtrue
またはfalse
として表示されます。
let flag = true
print(flag) //true
NSArray *array1 = [NSArray arrayWithObjects:@"todd1", @"todd2", @"todd3", nil];
bool objectMembership = [array1 containsObject:@"todd1"];
NSLog(@"%d",objectMembership); // prints 1 or 0
これがあなたがそれを行う方法です:
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"));