Java的System.out.write()方法的使用
程序员文章站
2022-07-15 09:15:16
...
如下面的代码。
public class Test
{
public static void main(String[] args)
{
String str = "Hello World";
for(int i=0; i<str.length(); i++)
System.out.write(str.charAt(i));
}
}
可能觉得会输出:Hello World。实际上,它什么也没有输出。要想达到这样的效果,可以这样使用。
public class Test
{
public static void main(String[] args)
{
String str = "Hello World";
for(int i=0; i<str.length(); i++)
System.out.write(str.charAt(i));
System.out.flush();
// for(int i=0; i<str.length(); i++)
// {
// System.out.write(str.charAt(i));
// System.out.flush();
// }
}
}