完全相同的代码(使用多线程)不适用于2台不同的计算机

时间:2016-03-04 18:47:40

标签: java multithreading

我现在在一个简单的国际象棋A.I.工作。 (计算可能的未来转弯,评分它们,选择最好的转弯,+一些技巧,这样你就不必计算每一轮转弯)。代码是用Java编写的,我使用的是Netbeans。为了使计算更快,我使用多线程。代码大致如下:

  • 主要功能首先进行一些计算,然后启动8个线程。
  • 线程执行主计算
  • 当它们完成时,它们在布尔数组中设置一个布尔值(finished [])为true。这个数组在“主类”中(如果你这样称呼它),主要功能也是。
  • 在所有这段时间内,主函数正在等待并且不断检查finish [] - 数组的每个值是否为真。如果是这种情况,那就继续它的工作。

现在我有一个奇怪的问题。代码在我的电脑上完美运行,但是当我在笔记本电脑上运行完全相同的代码时,在完成[] - 数组的所有值都为真后,main函数将无法继续工作。我已经在代码中做了一些更改,所以我可以尝试使用不同数量的线程,但结果总是一样的。

我完全不知道这里发生了什么,如果有人有任何答案和/或建议,我会非常感激!

如果您还需要更多信息,我会尽力而为。 :)

(抱歉可能存在语法错误,英语不是我的母语,但我正在尽我所能。;)

所以我被要求展示我在程序中使用的一些代码:

(也许首先是一个警告,是的,我仍然是Java中的一个大Noob,这是我第一次使用线程,所以如果你看到我可能犯的错误,不要感到震惊.xD)

主要类看起来像这样:

public class Chess_ai_20 {

   static boolean finished[] = new boolean[8];
   Distributor[] Distributors = new Distributor[8];
   ...

   public static void main(String[] args) {
      boolean testing=false;
      ...
      //some calculations and other stuff
      ...
      Distributors[0] = new Distributor(...., "0"); //the String "0" will be the thread name.
      Distributors[1] = new ...
      ...
      Distributors[7] = new Distributor(...., "7");

      for (int i = 0; i < 8; i++) {
          Distributoren[i].start();
       }

       testing=false;

       while(testing==false){
          if(finished[0]==true && finished[1]==true && ... && finished[7]==true){
             testing=true;   //That's the point where I get stuck I suppose
           }
        }

        System.out.println("I made it!");
   }

   public static void setFinished(int i) {
      finished[i] = true;
      System.out.println("finished [" + i + "] = " + finished[i]);
      System.out.println(Arrays.toString(finished));   //To check how many values already are true
    }
 }

然后我们当然得到了“经销商”课程

public class Distributor extends Thread {
   Thread t;
   String threadname;
   boolean running=false;
   ...
   Distributor(......, String s) {
      threadname=s;
      ...
      ...
   }

   @Override
   public void start() {
      running=true;
      if (t == null) {
          t = new Thread(this,threadname);
          t.start();
      }
    }

   @Override
   public void run() {
      if(running){
         ...
         //Do the main calculations etc.
         ...
         //All the Calculations habe been done at this point
         Chess_ai_20.setFinished(Character.getNumericValue(threadname.charAt(0))); //Set the value of finished[] true in the main class
         running=false;
      }
   }
}

1 个答案:

答案 0 :(得分:1)

正如其他人所提到的,使用Future会更简单易懂。下面是一个片段,演示了如何重写代码。查看code in action

首先,您编写一个Callable来定义您要执行的任务。

public class MyCallable implements Callable<Boolean> {

    @Override
    public Boolean call() {
        // Do some job and return the result.
        return Boolean.TRUE;
    }
}

然后,您将此任务提交给Executor。 JDK中有很多Executor。您想首先浏览Concurrency Tutorial

    ExecutorService executor = Executors.newFixedThreadPool(Runtime
            .getRuntime().availableProcessors());
    List<Callable<Boolean>> callables = new ArrayList<>();
    for (int counter = 0; counter < 8; counter++) {
        callables.add(new MyCallable());
    }

    List<Future<Boolean>> futures = executor.invokeAll(callables);
    for (Future<Boolean> future : futures) {
        System.out.println(future.get()); // You'd want to store this into an array or wherever you see fit.
    }

    executor.shutdown();

请注意CollectionArrayList(在这种情况下,Thread)。因此,您无需担心返回索引,ID或甚至int的名称(如果您已分配了一个)来映射相应的结果。