⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 tv.hpp

📁 一个类似遥控器的源码程序。可以有多种功能
💻 HPP
字号:
#ifndef	_HEAD_FIRST_DESIGN_PATTERNS_COMMAND_REMOTE_TV_HPP_
#define _HEAD_FIRST_DESIGN_PATTERNS_COMMAND_REMOTE_TV_HPP_

#include "Remote.hpp"

namespace HeadFirstDesignPatterns {
namespace Command {
namespace Remote {class TV {	private: std::string location;	private: int channel;	public: TV(std::string location) {		this->location = location;	}	public: virtual void on() {		std::cout << location.c_str() << " TV is on" << std::endl;	}	public: virtual void off() {		std::cout << location.c_str() << " TV is off" << std::endl;	}	public: virtual void setInputChannel() {		channel = 3;		std::cout << location.c_str() << " Channel is set for VCR" << std::endl;	}};} // namespace Remote
} // namespace Command
} // namespace HeadFirstDesignPatterns#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -