RSS

objective-cメモ

文字列配列の最後に入れる文字は,Cでは「\0」だが,Objective-Cは「0」を代入する.

char str[256];
...
str[最後] = 0;

もちろん,0 != '0'

Bookmark and Share

0 コメント: