objective-c 强大的布尔类型
摘要:
objective-c codes:#import BOOL areIntsDifferent(int thing1,int thing2){ if (thing1==thing2) { return (NO); }else{ return (YES); }}NSString *boolString(BOOL yesNo){ if (yesNo==NO) { return (@"No"); }else{ return (@"Yes"); }}int main(int argc,const char *a... 阅读全文
posted @ 2013-09-13 15:10 Ijavascript 阅读(230) 评论(0) 推荐(0) 编辑