-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhello1.java
80 lines (71 loc) · 1.15 KB
/
hello1.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
69
70
71
72
73
74
75
76
77
78
79
80
/**
* Class description
* hello1.java
*
* @version Enter version here..., 17/07/24
* @author xin.huang
*/
public class hello {
/** Field description */
private String aa;
/** Field description */
private String bb;
/**
* Method description
*
*
* @param str1
* @param str2
*
* @return
*/
public String f1(String str1, String str2) {
System.out.println("one");
}
/**
* Method description
*
*
*
* @param args
*/
public static void main(String[] args) {
System.out.println("Hello World!");
}
/**
* Method description
*
*
* @return String
*/
public String getAa() {
return aa;
}
/**
* Method description
*
*
* @param aa
*/
public void setAa(String aa) {
this.aa = aa;
}
/**
* Method description
*
*
* @return String
*/
public String getBb() {
return bb;
}
/**
* Method description
*
*
* @param bb
*/
public void setBb(String bb) {
this.bb = bb;
}
}