PrintStream 无法解析为类型。为什么?

PrintStream cannot be resolved to a type. Why?

PrintStream ps1, ps2;

我的编译器告诉我

PrintStream cannot be resolved to a type

为什么?这是我教授的代码。为什么它不起作用?我认为您可以使用 PrintStream 作为类型,这样您也可以编写 ps1=System.out 例如。

My compiler tells me that "PrintStream cannot be resolved to a type". Why?

您需要导入 PrintStream class。只需在脚本开头添加 import java.io.PrintStream;