摘要: 关于八进制和十六进制int temp = 50;NSLog(@"%#o",temp);NSLog(@"%o",temp);//打印结果为062和62int temp = 050;//在objc中,如果整数前加0则代表八进制数。NSLog(@"%i",temp);//打印结果为40同样道理的,十六进制则是以0x开头的数字:int temp = 50;NSLog(@"%#x",temp);NSLog(@"%x",temp);//打印结果为0x32和32int temp = 0x50;NSLog(@& 阅读全文
posted @ 2013-04-17 17:21 魔术先生 阅读(111) 评论(0) 推荐(0) 编辑