CPlusPlusThings/practical_exercises/10_day_practice/day4/拷贝构造函数/clock.h
Light-City a4d828bb4c update
2020-04-06 00:57:02 +08:00

26 lines
532 B
C++
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#ifndef CLOCK
# define CLOCK
class Clock
{
public:
Clock(int NewH,int NewM,int NewS);
Clock(Clock &c);//拷贝构造函数,如果不加,编译器会自动生成一个拷贝构造函数,因此加不加都可以直接使用。
void SetTime(int NewH,int NewM,int NewS);
void ShowTime();
~Clock();//析构函数,编译器会自动产生一个默认的析构函数。
private:
int Hour,Minute,Second;
};
#endif
/*
#ifndef 标识符
程序段1
#else
程序段2
#endif
如果“标识符”未被定义过则编译程序段1否则编译程序段2。
*/