文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>Item 6:Distinguish between prefix and postfix forms of increment and decrement o

Item 6:Distinguish between prefix and postfix forms of increment and decrement o

时间:2011-06-10  来源:Ray Z

 1 #include <iostream>
 2 using namespace std;
 3 
 4 class MyInt
 5 {
 6 private:
 7     int a;
 8 public:
 9     MyInt(int n) : a(n){};
10 
11     MyInt& operator++()
12     {
13         a += 1;
14         return *this;
15     };
16     
17     const MyInt operator++(int)
18     {
19         MyInt old = *this;
20         ++(*this);
21 
22         return old;
23     };
24 
25     int getValue()
26     {
27         return a;
28     }
29 };
30 
31 int main()
32 {
33     MyInt i(4);
34 
35     MyInt j = i++;
36     cout << j.getValue() << endl;
37     cout << (++i).getValue() << endl;
38 
39     cin.get();
40 }
相关阅读 更多 +
排行榜 更多 +
辰域智控app

辰域智控app

系统工具 下载
网医联盟app

网医联盟app

运动健身 下载
汇丰汇选App

汇丰汇选App

金融理财 下载