diff --git a/README.md b/README.md index ea52b23..9c0ef06 100644 --- a/README.md +++ b/README.md @@ -524,7 +524,7 @@ public: 如上 using 声明,对于基类的每个构造函数,编译器都生成一个与之对应(形参列表完全相同)的派生类构造函数。生成如下类型构造函数: ```cpp -derived(parms) : base(args) { } +Derived(parms) : Base(args) { } ``` #### using 指示 diff --git a/README_Details.md b/README_Details.md index 0b7d9ae..ef1d07e 100644 --- a/README_Details.md +++ b/README_Details.md @@ -533,7 +533,7 @@ public: 如上 using 声明,对于基类的每个构造函数,编译器都生成一个与之对应(形参列表完全相同)的派生类构造函数。生成如下类型构造函数: ```cpp -derived(parms) : base(args) { } +Derived(parms) : Base(args) { } ``` #### using 指示