gpt4 book ai didi

java - Java 字符串的奇怪行为

转载 作者:行者123 更新时间:2023-12-01 03:31:29 25 4
gpt4 key购买 nike

我遇到了这个程序,但它没有以预期的方式运行。

public class StringTest
{
public static void main(String[] args)
{
String s = "Hello world";
for(int i = 0 ; i < s.length() ; i++)
{
System.out.write(s.charAt(i));
}
}
}

如果我们认为它应该打印 Hello world 但它什么也没打印。到底是怎么回事?有任何想法吗?提前致谢。

最佳答案

你想要:System.out.print(s.charAt(i));

根据 API :

Note that the byte is written as given; to write a character that will be translated according to the platform's default character encoding, use the print(char) or println(char) methods.

如对您问题的评论中所述,如果您真的想使用 write(),则需要 flush()


write(int) 不打印任何东西的原因是因为它只在 \nautoFlush 时刷新流是的。

public void write(int b) {
try {
synchronized (this) {
ensureOpen();
out.write(b);
if ((b == '\n') && autoFlush)
out.flush();
}
}
catch (InterruptedIOException x) {
Thread.currentThread().interrupt();
}
catch (IOException x) {
trouble = true;
}
}

关于java - Java 字符串的奇怪行为,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5199166/

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