黑马程序员技术交流社区

标题: 线程问题 [打印本页]

作者: 杨习平    时间: 2012-8-16 18:46
标题: 线程问题
用内部类实现4个线程,然后其中两个每次对 j 增加 1 ,另外两个线程对 j 每次减 1 求思路,代码体现一下。
作者: 童兴龙    时间: 2012-8-16 20:03
public class ThreadTest1{
  private int j;
  public static void main(String args[]){
ThreadTest1 tt=new ThreadTest1();
Inc inc=tt.new Inc();
Dec dec=tt.new Dec();
for(int i=0;i<2;i++){
Thread t=new Thread(inc);
t.start();
t=new Thread(dec);
t.start();
}
}
  private synchronized void inc(){
j++;
System.out.println(Thread.currentThread().getName()+"-inc:"+j);
  }
  private synchronized void dec(){
j--;
System.out.println(Thread.currentThread().getName()+"-dec:"+j);
  }
  class Inc implements Runnable{
public void run(){
for(int i=0;i<100;i++){
inc();
}
}
  }
  class Dec implements Runnable{
public void run(){
for(int i=0;i<100;i++){
dec();
}
}
  }
}
这好像是一道面试题,我有幸留了一份答案。求加分
作者: 童兴龙    时间: 2012-8-16 20:57
童兴龙 发表于 2012-8-16 20:03
public class ThreadTest1{
  private int j;
  public static void main(String args[]){

very thanks u !




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2