码迷,mamicode.com
首页 > 编程语言 > 详细

C++运算符重载

时间:2017-07-24 17:28:45      阅读:162      评论:0      收藏:0      [点我收藏+]

标签:his   net   art   nsis   运算符   operator   amp   函数   bsp   

可看一博主文章http://blog.csdn.net/insistgogo/article/details/6626952

 

下面是自+1的函数重载

//单目运算符重装++, --
Person& operator++() //++a;
{
this->age += 1;
return *this;
}

Person operator++(int) //a++
{
Person old(*this);
this->age += 1;
return old;
}

C++运算符重载

标签:his   net   art   nsis   运算符   operator   amp   函数   bsp   

原文地址:http://www.cnblogs.com/kirk1995/p/7229729.html

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