C++:explicit 关键字
Posted 滔滔就是我hia
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C++:explicit 关键字相关的知识,希望对你有一定的参考价值。
隐式类型转换 (构造函数的隐式调用)
举例:
#include <iostream>
using namespace std;
class Point {
public:
int x, y;
Point(int x)
: x(x) {}
};
void displayPoint(const Point& p)
{
cout << "(" << p.x << ")" << endl;
}
int main()
{
displayPoint(1);
Point p = 1;
}
explicit关键字
指定构造函数或转换函数 (C++11起)为显式, 即它不能用于隐式转换和复制初始化.
构造函数被explicit修饰后, 就不能再被隐式调用了. 也就是说, 之前的代码, 在Point(int x)前加了explicit修饰, 就无法通过编译了.
//加入explicit关键字后
#include <iostream>
using namespace std;
class Point {
public:
int x, y;
explicit Point(int x)
: x(x) {}
};
void displayPoint(const Point& p)
{
cout << "(" << p.x << ")" << endl;
}
int main()
{
displayPoint(1);
Point p = 1;
}
Effective C++:
被声明为explicit的构造函数通常比其 non-explicit 兄弟更受欢迎, 因为它们禁止编译器执行非预期 (往往也不被期望) 的类型转换. 除非我有一个好理由允许构造函数被用于隐式类型转换, 否则我会把它声明为explicit. 我鼓励你遵循相同的政策.
以上是关于C++:explicit 关键字的主要内容,如果未能解决你的问题,请参考以下文章