testclassconstructor.h
来自「computer clock codein c++,computer clock」· C头文件 代码 · 共 21 行
H
21 行
//Constructor with default Parameters
class testClass
{
public:
void print() const; //Line a
testClass(); //Line b
testClass(int, int); //Line c
testClass(int, int, double); //Line d
testClass(double, char); //Line e
private:
int x;
int y;
double z;
char ch;
};
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?