explicit
- 字面含义;
明确的 明白的 - C++用法 译: 显示的
1.表明用求编译器不要自动得转化,抛弃默认的操作;不要隐式更改到它
2. 仅仅用在类的构造函数中
3. 转化是双向的; 类 - - 其它类型
-
主要包含三层含义:
(1)该关键字只能用来修饰类内部的构造函数(2)禁止隐式调用拷贝构造函数
(3)禁止类对象之间的隐式转换
示例;摘自标准库
template <class ,Alloc>
class vector<bool,Alloc>
{
public:
typedef _bit_reference reference;
protected:
reference operator[] (size_type n){
return *(begin()+difference_type());
}
};
struct _bit_reference{
unsigned int* p;
unsigned int mask;
// ……
public:
operator bool() const {return !(!(*p& mask));}
//……
};
总结:
(1)explicit关键字只需用于类内的单参数构造函数前面。由于无参数的构造函数和多参数的构造函数总是显示调用,这种情况在构造函数前加explicit无意义。
(2)如果想禁止类A对象被隐式转换为类B对象,可在类B中使用关键字explicit,即定义这样的转换构造函数
implicit
- 隐式的
C++编译过程可能发生隐式类型转换,但无implicit 关键字