gpt4 book ai didi

java - 可以使用转义序列打印 Java 变量吗?

转载 作者:行者123 更新时间:2023-12-01 21:18:46 26 4
gpt4 key购买 nike

有没有办法使用转义序列打印变量,类似于 Swift(如下所示)?

Ivar 变量 = 0
print("这个数字\(变量)很酷!")

是的,我知道还有其他方法可以实现相同的目标,但我想缩短代码并避免诸如此类的怪物

String variable = "0";
System.out.print("The number" + variable + "is cool!");

我还想避免必须解析所有内容以打印不同类型

最佳答案

System.out.print("The number " + variable + " is cool!");

System.out.printf("The number %s is cool!", variable );

System.out.printf(MessageFormat.format("The number {0} is cool!", variable));

到目前为止,还不可能有更多的选择......

关于java - 可以使用转义序列打印 Java 变量吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39478787/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com