MCPcopy Create free account
hub / github.com/EricPengShuai/Interview / Base1

Method Base1

base_code/derived_base.cpp:11–11  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

9class Base1 {
10public:
11 Base1():value(10) {}
12 virtual ~Base1() = default;
13 static void test1() { cout << "Base test1..." << endl; }
14protected: // 保护

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected