关于静态变量的修改以及线程休眠

来源:互联网 发布:源美网络 半价商城 编辑:程序博客网 时间:2024/06/03 21:56

package plane;


public class helicopter {
static String wing;
static String tail;
static String window;
static String start_where=null;
static String destination_where=null;
void flying(String initial_point,String destination){
System.out.println("The helicopter start flying from "+initial_point+" to "+destination);
destination_where = destination;
}
void fall() throws InterruptedException{
System.out.println("The helicopter has been "+destination_where+" and is falling ");
Thread.sleep(10000);//通过调用线程方法使程序等待10秒钟执行
System.out.println("The helicopter is fall down");
}
}



package plane;


public class control {
public static void main(String args[]){
helicopter he = new helicopter();
he.flying("哈尔滨","北京");//初始静态变量为哈尔滨
helicopter he2 = new helicopter();
he2.flying("北京", "上海");//静态变量已经被修改成北京
try {
he.fall();
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}


原创粉丝点击