我来我网
https://5come5.cn
 
您尚未 登录  注册 | 菠菜 | 软件站 | 音乐站 | 邮箱1 | 邮箱2 | 风格选择 | 更多 » 
 

本页主题: x=x+1,x+=1,x++,为这三个语句的效率排序。并说明为什么。 显示签名 | 打印 | 加为IE收藏 | 收藏主题 | 上一主题 | 下一主题

wan520





性别: 帅哥 状态: 该用户目前不在线
等级: 希望之光
发贴: 1724
威望: 0
浮云: 1125
在线等级:
注册时间: 2006-02-20
最后登陆: 2010-11-04

5come5帮你背单词 [ signature /'signitə/ n. 签字,签名 ]


x=x+1,x+=1,x++,为这三个语句的效率排序。并说明为什么。

RT........RT!
顶端 Posted: 2007-09-19 09:43 | [楼 主]
yunyue



性别: 帅哥 状态: 该用户目前不在线
等级: 版主
发贴: 979
威望: 5
浮云: 407
在线等级:
注册时间: 2006-06-18
最后登陆: 2012-06-08

5come5帮你背单词 [ abide /ə'baid/ vi. (by)遵守、坚持 ]


The C++ Standard Library(99年)中的一段比较 x++ 与 ++x 的内容:
//make all characters in the list uppercase
list<char>::iterator pos;
for (pos = coll.begin(); pos != coll.end(); ++pos) {
*pos = toupper(*pos);
}
Note that the preincrement operator (prefix ++) is used here. This is because it might have better
performance than the postincrement operator. The latter involves a temporary object because it
must return the old position of the iterator. For this reason, it generally is best to prefer ++pos
over pos++. Thus, you should avoid the following version:
for (pos = coll.begin(); pos != coll.end(); pos++) {
                                                            ^^^^^ // OK, but slower
    ...
}
For this reason, I recommend using the preincrement and pre-decrement operators in general.
顶端 Posted: 2007-10-10 20:15 | [1 楼]
我来我网·5come5 Forum » 程序员之家

Total 0.014716(s) query 6, Time now is:11-22 15:57, Gzip enabled
Powered by PHPWind v5.3, Localized by 5come5 Tech Team, 黔ICP备16009856号