如何自动调用方法来停止线程?

时间:2016-04-27 14:32:13

标签: java multithreading oop race-condition event-listener

我正在实现一个小胎生动物可以怀孕的小项目(一个实现Runnable的类)。

这是我的Gestation课程:

private final class Gestation implements Runnable //inner class of Viviparous
{                                                
        private boolean isWorking;
        private Viviparous[] babies;
        private final int time_end;
        private int time_left;
        private Enclosure e;

        public Gestation(Viviparous[] b, Enclosure e)
        {
            if(Viviparous.this instanceof Lion) 
                this.time_end = Lion.TIME_GESTATION;
            else if(Viviparous.this instanceof Gazelle) 
                this.time_end = Gazelle.TIME_GESTATION;
            else if(Viviparous.this instanceof Otter) 
                this.time_end = Otter.TIME_GESTATION;
            else
                this.time_end = 0;
            this.time_left = this.time_end;
            this.e = e;
            this.b =b;

            this.isWorking = true;
            new Thread(this).start();
        }

        public Viviparous[] getBabies()
        {
            return this.babies;
        }

        public boolean isWorking()
        {
            return this.isWorking;
        }

        public void stop()
        {
            if(this.time_left == 0)
            {
                Thread.currentThread().stop();
                this.isWorking = false;
                System.out.println("Gestation ended");

                Viviparous.this.calve(this.e); //calving in Enclosure e.
            }
        }

        public void run() 
        {
            while(this.isWorking)
            {
                this.time_left--;
                try 
                {
                    Thread.sleep(400L);
                } 
                catch (InterruptedException e) 
                {
                    e.printStackTrace();
                }
                if((this.time_left)%10==0 && this.time_left != 0)
                    System.out.println("Gestation will end in "+this.time_left+" days.");
            }
        }

}

我想在time_left == 0时触发stop()。 就在我没有stop()方法之前,只有run_(),其中循环在time_left == time_end时停止,然后调用Viviparous.this的calve(),这最后一个方法要求用户用输入命名婴儿。 问题是我的程序已经要求用户从当前菜单中选择一个选项: 我猜输入宝贝名称和菜单选项之间存在冲突。

2 个答案:

答案 0 :(得分:1)

  

我希望线程自动停止。

当run方法返回或抛出异常时,线程停止。如果您希望线程停止,请从run()返回。

如果您希望它在time_left == 0时自动停止,请在线程的顶级循环中测试time_left,并在time_left == 0时返回。

答案 1 :(得分:0)

创建一个volatile布尔字段(例如isWorking)并提供一个设置它的方法。然后,您可以通过调用该方法来停止该线程。确保变量是易变的,否则可能不会被注意到......

private volatile boolean isWorking = true;

public stopThread() {
    this.isWorking = false;
}

无论如何都不需要删除Thread.stop()。