首页 > 其他 > 详细

一个自增与自减的源码

时间:2014-06-01 09:00:42      阅读:505      评论:0      收藏:0      [点我收藏+]

看了STL源码剖析,自己写的:

#include <iostream>

using namespace std;
//template<class T>
class Int
{
    friend ostream& operator<<(ostream& os,const Int& i);
public:
    Int(int i):m_i(i)
    {

    }
    Int& operator++()
    {
        ++(this->m_i);
        return *this;
    }
    Int& operator--()
    {
        --(this->m_i);
        return *this;
    }
    const Int operator++(int)
    {
        Int temp=*this;
        ++(*this);
        return temp;
    }
    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++;
    cout<<++I;
    cout<<I--;
    cout<<--I;
    cout<<*I;
    return 0;

}



一个自增与自减的源码,布布扣,bubuko.com

一个自增与自减的源码

原文:http://blog.csdn.net/fuyuehua22/article/details/27819379

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!