标签:super blog getname try string ini catch star cep
package www.tainiu.gui__V2; public class aa__XianCheng__V1 { public static void main(String[] args) { // TODO Auto-generated method stub Cat cat1= new Cat(); Cat cat2= new Cat(); cat1.start(); cat2.start(); } } class Cat extends Thread{ int times= 0; @Override public void run() { // TODO Auto-generated method stub super.run(); while(true) { try {Thread.sleep(1000);} catch (InterruptedException e) {e.printStackTrace();} times ++; System.out.println("Hello World__"+times+this.getName()); if(times == 10) { break; } } } }
标签:super blog getname try string ini catch star cep
原文地址:http://www.cnblogs.com/wujianbo123/p/7633092.html