-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathComputer.h
71 lines (60 loc) · 1.27 KB
/
Computer.h
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
71
//
// Computer.h
// pr21
//
// Created by yuqing on 2019/3/16.
// Copyright © 2019 yuqing. All rights reserved.
//
#ifndef Computer_h
#define Computer_h
#include <iostream>
#include <string.h>
#include <stdio.h>
using namespace std;
class Computer{
private:
string name;
int num;
int price;
friend class ComputerCollection;
public:
Computer(){};
Computer(string name1, int num1, int price1){
name = name1;
num = num1;
price = price1;
}
Computer operator++()
{
++num;
return Computer(name, num, price);
}
Computer operator--(){
--num;
if(num < 0) num = 0;
return Computer(name, num, price);
}
friend istream &operator>>(istream& in, Computer& src);
friend ostream& operator<<(ostream& out, const Computer& src);
bool operator <(const Computer& d)
{
if(num < d.num)
{
return true;
}
if(num > d.num)
{
return false;
}
if(num == d.num){
if(price < d.price)
return true;
else return false;
}
return false;
}
void setPrice(int p){
this->price = p;
}
};
#endif /* Computer_h */