Skip to content

Commit a22d3d0

Browse files
y0sh1neLight-City
authored andcommitted
fix deleteLine
1 parent 9036ee2 commit a22d3d0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

basic_content/const/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ const int a=100;
1919
+ 类型检查
2020

2121
+ const常量与`#define`宏定义常量的区别:
22-
> **<s>const常量具有类型,编译器可以进行安全检查;#define宏定义没有数据类型,只是简单的字符串替换,不能进行安全检查。</s>**感谢两位大佬指出这里问题,见:[issue](https://github.com/Light-City/CPlusPlusThings/issues/5)
22+
> <strong><s>const常量具有类型,编译器可以进行安全检查;#define宏定义没有数据类型,只是简单的字符串替换,不能进行安全检查。</s></strong>感谢两位大佬指出这里问题,见:[issue](https://github.com/Light-City/CPlusPlusThings/issues/5)
2323
2424
+ const常量支持所有类型。
2525
+ 其他情况下它只是一个 `const` 限定的变量,不要将与常量混淆。

0 commit comments

Comments
 (0)