在处理中打印一个句子一次
我想知道如何在处理中打印一次句子。当我输入 println("Hello World!");
时,它只显示很多 Hello World!句子。我知道如何用 keyPressed 修复它(当按下该键时,键入此内容等),但我不知道如何以简单的方式做到这一点......
I'm wondering how to println a sentence ONCE in Processing. when I type println("Hello World!");
it just shows lots of Hello World! sentences. I know how to fix it with keyPressed (when the key is pressed, type this, and stuff) but I don't know how to do it in a simple way...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
设置一个标志,使其只打印一次。例如,在全局范围内,您应该具有:
在执行 println 的位置:
Set a flag so that it only gets printed once. For example, at global scope you should have:
And where you do the println:
如果它处于循环中(听起来像)。我会同意 Mikola 所说的或者:
关键是要跳出循环的
breakK;
语句。如果它不在循环中,或者这没有帮助,请扩展该问题。
If it is in a loop (which it sounds like). I would go with either what Mikola said or:
The key being the
breaK;
statement to fall out of the loop.If it's not in a loop, or this doesn't help, please expand on the issue..