Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/EricPengShuai/Interview
/ A
Class
A
base_code/colon.cpp:10–13 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
8
int count = 0; // 全局(::)的count
9
10
class A {
11
public:
12
static int count; // 类A的count (A::count)
13
};
14
15
// 静态变量必须在此处定义
16
int A::count = 5;
Callers
nothing calls this directly
Calls
no outgoing calls
Tested by
no test coverage detected