Snake icon indicating copy to clipboard operation
Snake copied to clipboard

贪吃蛇小游戏的实现

Results 3 Snake issues
Sort by recently updated
recently updated
newest added

```py public void run() { while(running){ if(pause){ continue; } repaint(); try { Thread.sleep(100); } catch (InterruptedException e) { e.printStackTrace(); } } } ``` continue前加个Thread.sleep(100);可以解决无限卡死问题

为什么会一直闪烁,我试了几个发现蛇会跟着蛋一起闪,该怎么解决?