From c1635d0c5c6327d30dcd083016f7b7283505c5b7 Mon Sep 17 00:00:00 2001 From: Francis <455954986@qq.com> Date: Sun, 10 Apr 2022 17:52:46 +0800 Subject: [PATCH] Update README.md --- basic_content/static/README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/basic_content/static/README.md b/basic_content/static/README.md index 001f283..008693e 100644 --- a/basic_content/static/README.md +++ b/basic_content/static/README.md @@ -248,7 +248,7 @@ Welcome to Apple! **限定访问范围** static还有限定访问范围的作用(类似于匿名名字空间)。来自issue:https://github.com/Light-City/CPlusPlusThings/issues/142 - +```cpp // source1.cpp extern void sayHello(); const char* msg = "Hello World!\n"; @@ -265,8 +265,9 @@ void sayHello() { printf("%s", msg); } +``` g++对于上面两个代码文件是可以正常编译并且打印Hello World!,但如果给source1.cpp中的msg加上static,则会导致undefined reference to 'msg'的编译错误: - +```cpp // source1.cpp extern void sayHello(); static const char* msg = "Hello World!\n"; @@ -275,3 +276,4 @@ int main() sayHello(); return 0; } +```