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

Class A

base_code/sizeof.cpp:4–14  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2using namespace std;
3
4class A
5{
6public:
7 char b;
8 virtual void func();
9 virtual void func1() {};
10 virtual void func2() {};
11 static int c;
12 static int d;
13 static int f;
14};
15
16void A::func() {
17 cout << "This is a function.\n";

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected