class Hello extends Thread {
public void run() {
for (int i = 0; i < 7; i++) {
if (count > 0) {
System.out.println("count= " + count--);
}
}
}
public static void main(String[] args) {
hello h1 = new hello();
hello h2 = new hello();
hello h3 = new hello();
h1.start();
h2.start();
h3.start();
}
private int count = 5;
}
我要问的问题是为什么最后定义一个private int count = 5; 还有一个问题是为什么要把主函数Main 放在类Hello 中 可以把主函数拿到类Hello外吗
|