-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpoker.java
68 lines (58 loc) · 1.22 KB
/
poker.java
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
package pokerGame;
public class poker implements Comparable<poker> {
private String design;
private String number;
public poker() {}
public poker(String design, String number) {
this.design = design;
this.number = number;
}
public String getDesign() {
return design;
}
public void setDesign(String design) {
this.design = design;
}
public String getNumber() {
return number;
}
public void setNumber(String number) {
this.number = number;
}
@Override
public int compareTo(poker o) {
// TODO Auto-generated method stub
int res = this.getNumber().compareTo(o.getNumber());
if(res > 0) {
return 1;
}else if(res < 0) {
return -1;
}else {
int weight1 = 0;
int weight2 = 0;
if(this.getDesign().equals("ºÚÌÒ")) {
weight1 = 4;
}else if(this.getDesign().equals("ºìÌÒ")) {
weight1 = 3;
}else if(this.getDesign().equals("÷»¨")) {
weight1 = 2;
}else {
weight1 = 1;
}
if(o.getDesign().equals("ºÚÌÒ")) {
weight1 = 4;
}else if(o.getDesign().equals("ºìÌÒ")) {
weight1 = 3;
}else if(o.getDesign().equals("÷»¨")) {
weight1 = 2;
}else {
weight1 = 1;
}
if(weight1 > weight2) {
return 1;
}else {
return -1;
}
}
}
}