Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
をに変換してNSStringからint64_t、次を使用して印刷したい:
NSString
int64_t
NSLog("%lld", i);
[str integerValue]現在、マイナスの数値を出力することがある使用のみを変換できます。
[str integerValue]
使用できます[str longLongValue]
[str longLongValue]
例えば:
int64_t i=[@"23570449442514" longLongValue];
longLongValue が機能します。[str longLongValue];
この機能を使用できatollます。
atoll
int64_t i = atoll([str UTF8String]);