Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我知道static在命名空间范围内意味着“内部链接”。现在考虑以下代码:
static
static class Foo {} foo;
static适用于Foo,foo还是两者都适用?
Foo
foo
它适用于在类定义之后声明的变量。
在 C++ 中,没有static class. 只有static对象和static功能。
static class
class Foo {}状态foo变量的类型。static使foo静态。
class Foo {}