我想在退出處理草圖時執行一些操作。我在論壇上發現方法stop()在應用程序退出之前調用。 我試過了,但在我看來,它永遠不會被調用。 這裏有個很小(不工作),例如:處理和停止()方法
void setup()
{
size(100, 100);
println("start");
}
void draw()
{
//nothing here
}
void stop()
{
println("called stop()");
super.stop();
}
如果退出過在App X按鈕上的IDE或 的應用,通過停止按鈕,我從來沒有看到消息「叫停()」。 我試着用和不用super.stop()都沒有改變。 由於
處理2.2.1,在Linux的Debian喘息
Crossposted:http://forum.processing.org/two/discussion/9548/stop-method-does-not-work – 2015-02-23 14:47:42