From e9d8fc78e44d5166f9eda9736465743e387f39fe Mon Sep 17 00:00:00 2001 From: huihut Date: Fri, 21 Jun 2019 00:58:24 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E5=A4=A7=E5=B0=8F=E5=86=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit https://github.com/huihut/interview/issues/42 --- README.md | 2 +- README_Details.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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 指示