Interesting memo for i++ and ++i.

If (i++ < i) // absolutely true;

If (i -- > i) // absolutely true;

if (++i == i) // absolutely true;

if (--i == i) // absolutely true.

posted on 2010-03-23 03:03  Diego  阅读(157)  评论(0编辑  收藏  举报