欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

++i与i++效率比较

程序员文章站 2022-05-10 18:17:14
...
//因为i是基本类型int,而且没有用到整个表达式的值,所以在楼主的情况下,两种写法是一样的
//下面换一种,i不是基本类型,比如类类型,根据Effective C++的条款,使用了里面的手法:前置的++实作一个后置的++至于为什么,请看Effective C++

#include <iostream>
using namespace std;
class Int
{
    int data;
public:
    Int(int value = 0) : data(value){}
    operator int (){return data;}
    Int& operator ++(){++data;return *this;}
    Int operator ++(int){Int t = *this; ++*this;cout << 0;return t;}
};

int main()
{
    for (Int i = 0; i < 8; ++i)
        cout << i;
        cout << endl;
    for (Int i = 0; i < 8; i++)
        cout << i;
    return 0;
}
相关标签: C C++ C#