我正在尝试使用以下代码从双精度数中减去 1:
-(NSMutableArray *)getMoreTwitterDataWithMaxID:(double)maxID {
double newestID = (maxID - 1);
NSLog(@"newest ID is %f and maxID is %f", newestID, maxID);
// other code
}
控制台吐出这个:
2012-05-15 11:21:14.693 nearYou[2570:3a03] newest ID is 202429657738522624.000000 and maxID is 202429657738522624.000000
我不确定他们为什么不减去 . . .
非常感谢任何帮助!