标题:请问我哪里错了
取消只看楼主
tangweiwei
Rank: 1
等 级:新手上路
帖 子:1
专家分:0
注 册:2014-10-31
结帖率:0
已结贴  问题点数:20 回复次数:0 
请问我哪里错了
#include <iostream>
using namespace std;

enum Computer_Op {dos,windows,xp,win7,vista,win8,win10};
class Computer
{
private:
    Computer_Op op;
    int mem;
    int hard;
public:
  
    Computer_Op GetOp()
    {
        return op;
    }
    int Mem()
    {
        return mem;
    }
    int Hard()
    {
        return hard;
    }
    void SetOp(Computer_Op o)
    {
        op= o;
    }
    void SetMem(int m)
    {
        mem = m;
    }
    void SetHard(int h)
    {
        hard= h;
    }
    void Run()
    {
        cout << "系统属性值!" << endl;
    }
    void Stop()
    {
        cout << "结束!" << endl;
    }
};
void main()
{
    Computer a;
    a.SetMem(100);
    a.SetOp(dos);
    a.SetHard(5.0);
    a.Run();

    cout << a.GetMem() <<endl;
    cout << a.GetOp() <<endl;
    cout << a.GetHard() <<endl;

    a.Stop();
}

搜索更多相关主题的帖子: windows private include public return 
2014-10-31 16:25



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-437948-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.492068 second(s), 8 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved