📄 light.cpp
字号:
#include<iostream>
using std::cout;
using std::endl;
#include "light.h"
Light::Light(int number)
:on(false),floorNumber(number)
{
cout<<"floor"<<floorNumber<<"light constructed"
<<endl;
}
Light::~Light()
{
cout<<"floor"<<floorNumber
<<"light destructed"<<endl;
}
void Light::turnOn()
{
if(!on){
on=true;
cout<<"floor"<<floorNumber
<<"light turns on"<<endl;
}
}
void Light::turnOff()
{
if(on){
on=false;
cout<<"floor"<<floorNumber
<<"light turns off"<<endl;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -