处理:为什么 setup() 运行多次?
我正在开发一个带有处理功能的可视化应用程序。
一切似乎都很顺利,但我注意到在控制台中,我看到 setup()
方法中的任何 println()
语句一式三份。对于 draw()
循环内的类似语句来说,情况似乎并非如此。
我认为这可能只是一个输出,但我现在看到多次尝试打开文件。它也可能会对性能造成影响。
知道我该如何防止这种情况吗?
我在 Mac OS 10.6.3 上使用Processing 1.0.9。
提前致谢, 罗斯
I'm working on a visualisation app with Processing.
All appears to be going well, but I've noticed that in the console, I'm seeing any println()
statements from the setup()
method in triplicate. This doesn't appear to be the case for similar statements inside the draw()
loop.
I thought this might just be an output thing, but I'm now seeing multiple attempts to open files. It will likely be taking its toll on performance, too.
Any idea how I can prevent this?
I'm using Processing 1.0.9 on Mac OS 10.6.3.
Thanks in advance,
Ross
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
调用
size()
和/或hint()
会导致setup()
再次运行。将这些调用放在第一位,以防止其他代码(例如文件加载)受到影响。Calls to
size()
and/orhint()
causesetup()
to be run again. Put those calls first to prevent other code (e.g. file loading) being affected.