解决方法1- public class Demo1 {
- private String color;
- private int num;
- Demo1() {
- int num = 4;
- String color = "red";
-
- this.num=num;
- this.color=color;
- }
- public static void main(String args[]) {
- Demo1 ca = new Demo1();
- run(ca);
- }
- static void run(Demo1 a) {
- System.out.print(a.num + "," + a.color);
- }
- }
复制代码 解决方法2
public class Demo1 {
private String color;
private int num;
Demo1() {
num = 4;
color = "red";
}
public static void main(String args[]) {
Demo1 ca = new Demo1();
run(ca);
}
static void run(Demo1 a) {
System.out.print(a.num + "," + a.color);
}
}
|