From d522f0c9f3869164500bdbb4bef6a4fb1add3ec5 Mon Sep 17 00:00:00 2001 From: e Date: Tue, 10 Mar 2020 16:25:59 +0800 Subject: [PATCH] correct markdown syntax and typo --- basic_content/const/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/basic_content/const/README.md b/basic_content/const/README.md index 6fd2735..b1c64d6 100644 --- a/basic_content/const/README.md +++ b/basic_content/const/README.md @@ -158,7 +158,7 @@ int main(){ 上述修改ptr指针所指向的值,可以通过非const指针来修改。 -最后,当把一个const常量的地址赋值给ptr时候,由于ptr指向的是一个变量,而不是const常量,所以会报错,出现:const int* -> int *错误! +最后,当把一个const常量的地址赋值给ptr时候,由于ptr指向的是一个变量,而不是const常量,所以会报错,出现:const int`*` -> int `*`错误! ```c++ #include @@ -170,7 +170,7 @@ int main(){ } ``` -上述若改为 const int *ptr或者改为const int *const ptr,都可以正常! +上述若改为 const int `*`ptr或者改为const int `*`const ptr,都可以正常! (3)指向常量的常指针 @@ -240,7 +240,7 @@ void StringCopy(char *dst, const char *src); void func(const A &a) ``` -对于非内部数据类型的参数而言,象void func(A a) 这样声明的函数注定效率比较底。因为函数体内将产生A 类型 +对于非内部数据类型的参数而言,象void func(A a) 这样声明的函数注定效率比较低。因为函数体内将产生A 类型 的临时对象用于复制参数a,而临时对象的构造、复制、析构过程都将消耗时间。