本帖最后由 黄金龙 于 2013-1-17 16:01 编辑
- /*
- 多线程的实例
- */
- class Demo11
- {
- public static void main(String[] args)
- {
- moreThread t = new moreThread();
- new Thread( new moreThread()).start();
- new Thread( new moreThread()).start();
- new Thread( new moreThread()).start();
- }
- }
- class moreThread implements Runnable
- {
- public int x=100;//这里不允许加static
-
- public void run()
- {
- while(x>=1)
- {
- System.out.println(Thread.currentThread().getName()+"----"+x--);
- }
-
- }
- }
复制代码 需求改下面的代码....public int x=100;//这里不允许加static
怎样整到他能够不重复
|
|