码迷,mamicode.com
首页 > 其他好文 > 详细

简单的i++ ++i实现

时间:2015-07-24 18:24:07      阅读:158      评论:0      收藏:0      [点我收藏+]

标签:c++

#include <iostream>
using namespace std;
class INT
{   
    public:
      friend ostream& operator<<(ostream& os, const INT& i);    

      INT(int i) : m_i(i) {};

      INT& operator++()
      {
        ++(this->m_i);
        return *this;
      }

      const INT operator++(int)
      {
        INT temp = *this;
        ++(*this);
        return temp;
      }

      const INT operator--()
      {
        --(this->m_i);
        return *this;
      }

      const INT operator--(int)
      {
        INT temp = *this;
        --(*this);
        return temp;
      }

      int& operator*() const
      {
        return (int&)m_i;
      }

    private:
      int m_i;
};      


ostream& operator<<(ostream& os, const INT& i)
{
    os<< ‘[‘<<i.m_i<< ‘]‘;
    return os;
}

int main()
{
    INT I(5);
    cout<<I++<<endl;   //operator++(int)
    cout<<++I<<endl;
    cout<<I--<<endl;
    cout<<--I<<endl;
    cout<<*I<<endl;
    return 0;
}

运行结果:
技术分享

版权声明:本文为博主原创文章,未经博主允许不得转载。

简单的i++ ++i实现

标签:c++

原文地址:http://blog.csdn.net/nizhannizhan/article/details/47043867

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!