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

基于const的重载

时间:2015-07-24 16:17:00      阅读:132      评论:0      收藏:0      [点我收藏+]

标签:

C++不允许依靠顶层const的区别来定义重载函数,例如下面的做法将造成重复声明,原因是调用时形参为const int的函数可以接受int的实参(经过隐式类型转换)


void print(int)
void print(const int) //重复声明,无法与void print(int)区分

void print(int*)
void print(int*const) //重复声明,无法与void print(int*const)区分


但C++允许通过区分成员函数是否是const对其进行重载,例如下面的做法并没有问题:

class Screen {
public:
    //两个不同的函数,没有重复声明
    void print() const;
    void print();
}

这段代码不会产生问题的原因是,实际上这里的const包含了底层的const,而不仅仅是顶层的const(即同时包含底层const和顶层const)。下面这段伪代码更形象地说明了不会产生重复声明问题的原因:

std::string Person::getName() const;
//上面这一句相当于声明:
//std::string Person::getName(const Person* const);
//(注意:实际上C++没有这种形式的声明,但便于理解,可以理解成这种形式的声明)








基于const的重载

标签:

原文地址:http://my.oschina.net/JiamingMai/blog/483431

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