From a8fc3dabd5e36d65ccc183ddced8d838aabadcfe Mon Sep 17 00:00:00 2001 From: c-cpp-a <111665869+c-cpp-a@users.noreply.github.com> Date: Wed, 29 Mar 2023 21:23:34 +0800 Subject: [PATCH] =?UTF-8?q?=E8=A6=81=E5=8C=BA=E5=88=86static=E5=92=8Cnames?= =?UTF-8?q?pace{}?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 比如: static int a; 和 namespace{ int a; } --- basic_content/maohao/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/basic_content/maohao/README.md b/basic_content/maohao/README.md index d78b3e5..317de59 100644 --- a/basic_content/maohao/README.md +++ b/basic_content/maohao/README.md @@ -6,7 +6,7 @@ ![](../img/wechat.jpg) -- 全局作用域符(::name):用于类型名称(类、类成员、成员函数、变量等)前,表示作用域为全局命名空间 +- 全局作用域符(::name):用于类型名称(类、类成员、成员函数、变量等)前,表示作用域为全局命名空间(或匿名命名空间) - 类作用域符(class::name):用于表示指定类型的作用域范围是具体某个类的 - 命名空间作用域符(namespace::name):用于表示指定类型的作用域范围是具体某个命名空间的