摘要: 1 #include 2 int n=0; 3 using namespace std; 4 class Cbox{ 5 int a ; 6 int b ; 7 int c ; 8 public: 9 int g ; 10 Cbox(int d):Cbox(){cout<<"dddd"... 阅读全文
posted @ 2017-05-25 19:54 ff_d 阅读(243) 评论(0) 推荐(0) 编辑
摘要: http://zh.cppreference.com/w/cpp/language/explicit explicit 指定符 C++ C++ 语言 类 explicit 指定符指定构造函数或转换函数 (C++11 起)不允许隐式转换或复制初始化。它仅可出现于在其类中定义的这种函数的 decl-sp 阅读全文
posted @ 2017-05-25 18:59 ff_d 阅读(175) 评论(0) 推荐(0) 编辑
摘要: 1 #include<iostream> 2 int n=0; 3 using namespace std; 4 class Cbox{ 5 int a ; 6 int b ; 7 int c ; 8 public: 9 int g ; 10 Cbox(int d):a(d),c(d),b(d){c 阅读全文
posted @ 2017-05-25 18:52 ff_d 阅读(216) 评论(0) 推荐(0) 编辑