欢迎来到天天文库
浏览记录
ID:51690286
大小:36.45 KB
页数:2页
时间:2020-03-15
《JAVA匿名类创建对象.doc》由会员上传分享,免费在线阅读,更多相关内容在工程资料-天天文库。
1、JAVA:匿名类既然没有类名,那要怎样创建对象呢?悬赏分:0
2、 解决时间:2009-10-1514:26
3、 提问者:yaofang88??最佳答案可以这样用(用Thread做个例子):newThread(){publicvoidrun(){for(;;){System.out.println("iamsleeping");try{sleep(1000);}catch(InterruptedExceptione){e.printStackTrace();}}}}.start();newThread(newRunnable(){publicvoidrun(
4、){for(;;){System.out.println("iamsleeping");try{Thread.sleep(1000);}catch(InterruptedExceptione){e.printStackTrace();}}}}).start();
此文档下载收益归作者所有