Java, replacement for infinite loops?

前端 未结 9 781
花落未央
花落未央 2021-01-13 00:45

I am making a program that shows cellular growth through an array. I have gotten it so when I press the start button, the array updates every 10 seconds in a while(true){} l

9条回答
  •  旧时难觅i
    2021-01-13 01:28

    You want to run your simulation in a Thread ( Look for Runnable Interface ). Then you can pass messages to this Thread to pause, continue and stop.

提交回复
热议问题