📅  最后修改于: 2023-12-03 15:01:56.398000             🧑  作者: Mango
在Java中,PrintStream类提供了一组方便的打印方法。print(String)方法是其中之一,它用于将字符串打印到输出流中。
public void print(String str)
str
:要打印的字符串。无。
下面是使用PrintStream的print(String)方法的示例:
import java.io.PrintStream;
public class PrintStreamExample {
public static void main(String[] args) {
String message = "Hello, World!";
// 创建PrintStream对象,输出到标准输出流(System.out)
PrintStream printStream = new PrintStream(System.out);
// 使用print方法将字符串打印到输出流中
printStream.print(message);
}
}
在上述示例中,我们创建了一个PrintStream对象,并将其输出流设置为标准输出流(System.out)。接着,我们使用print方法将"Hello, World!"字符串打印到输出流中。
打印结果如下:
Hello, World!