From 882d77d2e93b28b950490794417e358515899308 Mon Sep 17 00:00:00 2001 From: mohuang Date: Sun, 8 Mar 2020 19:10:30 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E7=AC=94=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Srudent -> Student --- basic_content/struct/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/basic_content/struct/README.md b/basic_content/struct/README.md index 264435d..cea8af9 100644 --- a/basic_content/struct/README.md +++ b/basic_content/struct/README.md @@ -76,7 +76,7 @@ struct Student { }; Student(){} Struct Student s; //ok -Srudent s; //ok +Student s; //ok ``` 添加同名函数后: @@ -87,7 +87,7 @@ struct Student { }; Student(){} Struct Student s; //ok -Srudent s; //error +Student s; //error ``` > 情形二:使用typedef定义结构体别名 @@ -225,4 +225,4 @@ int main() { | 在C结构体声明中不能使用C++访问修饰符。 | public、protected、private 在C++中可以使用。 | | 在C中定义结构体变量,如果使用了下面定义必须加struct。 | 可以不加struct | | 结构体不能继承(没有这一概念)。 | 可以继承 | -| 若结构体的名字与函数名相同,可以正常运行且正常的调用! | 若结构体的名字与函数名相同,使用结构体,只能使用带struct定义! | \ No newline at end of file +| 若结构体的名字与函数名相同,可以正常运行且正常的调用! | 若结构体的名字与函数名相同,使用结构体,只能使用带struct定义! |