标签:ret 自动 http ble nts 情况 lsp 程序 return
C++提供了关键字explicit,可以阻止不应该允许的经过转换构造函数进行的隐式转换的发生。声明为explicit的构造函数不能在隐式转换中使用。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
class Test1 { public : Test1( int n) { num=n; } //普通构造函数 private : int num; }; class Test2 { public : explicit Test2( int n) { num=n; } //explicit(显式)构造函数 private : int num; }; int main() { Test1 t1=12; //隐式调用其构造函数,成功 Test2 t2=12; //编译错误,不能隐式调用其构造函数 Test2 t2(12); //显式调用成功 return 0; } |
标签:ret 自动 http ble nts 情况 lsp 程序 return
原文地址:http://www.cnblogs.com/ranson7zop/p/7462901.html