|  1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
 | class Computer
{
public:
    Computer()
    {
        m_ram.clear();
        m_storage.clear();
    }
    void setMemory(const Memory& memory)
    {
        Memory tmpMemory = memory;
        m_ram.push_back(tmpMemory);
    }
    void setStorage(const Storage& storage)
    {
        Storage tmpStorage = storage;
        m_storage.push_back(tmpStorage);
    }
    void setCpu(const std::string& cpu)
    {
        m_cpu = cpu;
    }
    void showInfo()
    {
        std::cout << toString() << std::endl;
    }
private:
    int getMemory()
    {
        int size = 0;
        for (size_t i = 0; i < m_ram.size(); i++)
        {
            size += m_ram[i].getSize();
        }
        return size;
    }
    int getStorage()
    {
        int size = 0;
        for (size_t i = 0; i < m_storage.size(); i++)
        {
            size += m_ram[i].getSize();
        }
        return size;
    }
    std::string toString()
    {
        std::string infoComputer = "[Computer] This computer's spec is...\nCPU: " +
            m_cpu + ",\nRAM: " +
            std::to_string(getMemory()) + "GB,\nStorage: " +
            std::to_string(getStorage()) + "GB.\n";
        return infoComputer;
    }
    std::string m_info;
    std::string m_cpu;
    std::vector<Memory> m_ram;
    std::vector<Storage> m_storage;
};
 |