public class Demo03 {
static int a=3;
public static void main(String[] args) throws InterruptedException {
while(true){
Thread.sleep(1000);
while(a!=3){
System.out.println("已改变");
}
}
}
}
--------------------------------------------------------------------------------------
public class Demo04 {
public static void main(String[] args) {
Demo03.a=4;
System.out.println(Demo03.a);