?? father.h
字號:
#include "iostream.h"
class Father
{
public:
Father();
Father(Father &fa);
Father & operator =(const Father &fa);
~Father();
int GetA();
int GetB();
virtual void GetName();
void func(int count);
void func(char *p); //對void func(int count)是在同一個函數中,所以叫重載。
void SetA(int a);
void test1();
void test2(Father &fa);
int m_b;
private:
int m_a;
static int m_c;
};
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -