C++ Primer Plus(第六版)中文版编程练习答案

1

tv2.h

// tv2.h -- Tv and Remote classes
#ifndef TV_H_
#define TV_H_

class Remote;

class Tv
{
   
public:
    friend class Remote;   // Remote can access Tv private parts
    enum {
   Off, On};
    enum {
   MinVal,MaxVal = 20};
    enum {
   Antenna, Cable};
    enum {
   TV, DVD};

    Tv(int s = Off, int mc = 125) : state(s), volume(5),
        maxchannel(mc), channel(2), mode(Cable), input(TV) {
   }
    void onoff() {
   state = (state == On)? Off : On;}
    bool ison() const {
   return state == On;}
    bool volup();
    bool voldown();
    void chanup();
    void chandown();
    void set_mode() {
   mode = (mode == Antenna)? Cable : Antenna;}
    void set_input() {
   input = (input == TV)? DVD : TV;}
    void settings() const; // display all settings

    void set_smode(Remote& r);

private:
    int state;             // on or off
    int volume;            // 音量
    int maxchannel;        // maximum number of channels
    int channel;           // current channel setting
    int mode;              // 广播或有线电视
    int input;             // TV or DVD
};

class Remote
{
   
private:
    int mode;              // controls TV or DVD
    int state_mode;
    enum{
    Regular, Interact };

public:
    friend class Tv;
    Remote(int m = Tv::TV) : mode(m) {
   }
    bool volup(Tv & t) {
    return t.volup();}
    bool voldown(Tv & t) {
    return t.voldown();}
    void onoff(Tv & t) {
    t.onoff(); }
    void chanup(Tv & t) {
   t.chanup();}
    void chandown(Tv & t) {
   t.chandown();}
    void set_chan(Tv & t, int c) {
   t.channel = c;}
    void set_mode(Tv & t) {
   t.set_mode();}
    void set_input(Tv & t) {
   t.set_input();}

    void show_smode() const 
    {
   
        std::cout << "Now the state mode is:"
            << (state_mode == Regular ? "Regular" : "Interact") << std::endl;
    }
    void set_smode() {
    state_mode = 
        (state_mode == Regular ? Interact : Regular); }
};

inline void Tv::set_smode(Remote& r)
{
   
    if (state == On)
    {
   
        r.set_smode();
        //r.show_smode();
    }
    else
    {
   
        std::cout << "The Tv is off!\n";
    }
    
}
#endif

exercise01_tv2.cpp

// tv.cpp -- methods for the Tv class (Remote methods are inline)
#include <iostream>
#include "tv2.h"

bool Tv::volup()
{
   
    if (volume < MaxVal)
    {
   
        volume++;
        return true;
    }
    else
        return false;
}
bool Tv::voldown()
{
   
    if (volume > MinVal)
    {
   
        volume--;
        return true;
    }
    else
        return false;
}

void Tv::chanup()
{
   
    if (channel < maxchannel)
        channel++;
    else
        channel = 1;
}

void Tv::chandown()
{
   
    if (channel > 1)
        channel--;
    else
        channel = maxchannel;
}

void Tv::settings() const
{
   
    using std::cout;
    using std::endl;
    cout << "TV is " << (state == Off? "Off" : "On") << endl;
    if (state == On)
    {
   
        cout << "Volume setting = " << volume 
  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值