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

一个自增与自减的源码

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

标签:c   class   a   int   os   name   

看了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

一个自增与自减的源码

标签:c   class   a   int   os   name   

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

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