我在这个主题上搜索了一下,但我真的找不到任何有用的东西。这是我感到困惑的代码:
const char *beginning = "Love";
NSLog(@"%s", beginning); //Love
NSLog(@"%d", (NSInteger)beginning); //14687
是什么(NSInteger)beginning
意思?为什么输出14687?
谢谢。
我在这个主题上搜索了一下,但我真的找不到任何有用的东西。这是我感到困惑的代码:
const char *beginning = "Love";
NSLog(@"%s", beginning); //Love
NSLog(@"%d", (NSInteger)beginning); //14687
是什么(NSInteger)beginning
意思?为什么输出14687?
谢谢。