处理:为什么 setup() 运行多次?

发布于 2024-08-28 02:28:42 字数 299 浏览 6 评论 0原文

我正在开发一个带有处理功能的可视化应用程序。

一切似乎都很顺利,但我注意到在控制台中,我看到 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

东京女 2024-09-04 02:28:42

调用 size() 和/或 hint() 会导致 setup() 再次运行。将这些调用放在第一位,以防止其他代码(例如文件加载)受到影响。

Calls to size() and/or hint() cause setup() to be run again. Put those calls first to prevent other code (e.g. file loading) being affected.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文