摘要: 程序一: i++i = i++; //等效于如下三行int temp = i ; //temp是指其保留值i = i+1;//++的执行效果i = temp; //i的最后赋值是由temp决定的 故而i依然为其本值(temp将i+1覆盖掉了)小实例如下:public static void main... 阅读全文
posted @ 2012-12-06 17:29 奥东 阅读(410) 评论(0) 推荐(0) 编辑