print() 函数的就地更新
基本上我想做以下事情:
假设我有两种方法:
def printA(i: Int){
print("Value A: " + i)
}
def printB(j: Int){
print("Value B: " + j)
}
现在 - 例如 - 我使用这两种方法打印一些计算结果。我希望这两个值都可以更新,而无需每次打印新行(使用 println() 时)或将新值与旧值连接(使用 print() 时)。
“:”后面的输出应独立更新两行。
在 Python 中,我会使用占位符:
def printA(i):
print '\rValue A: %d' % (i),
sys.stdout.flush()
逗号阻止 Python 插入“\n”。对于 Scala 来说,它的工作方式应该与回车符(“\r”)相同。
问题是,我现在想更新为独立打印,但回车符会破坏整个输出,因此只打印最后一行。
有什么解决方案可以在scala中做到这一点吗?
感谢您的帮助!
问候
basically I want to do the following:
let's say I have two methods:
def printA(i: Int){
print("Value A: " + i)
}
def printB(j: Int){
print("Value B: " + j)
}
Now - for example - I use this both methods do print out some results for a computation. I want that both values can be updated without printing a new line each time (when using println()) or concatenating the new values the the older ones (when using print()).
The output behind ":" should be updated for both lines idependently.
In Python I would use placeholders:
def printA(i):
print '\rValue A: %d' % (i),
sys.stdout.flush()
The comma prevents Python to insert "\n". For Scala it should quite work the same way with carriage return ("\r").
The Problem is, that I now want to update to prints idependently but carriage return destroys the whole output and so only the last line is printed.
Is there any solution to do this in scala?
Thanks for your help!
Regards
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我有点不确定你想做什么。是更新的行还是格式。我相信这个例子同时做到了:
I'm a tad unsure about what you're trying to do. Is it a line that updates or is it the formatting. This example I believe does both: