PrintStream cannot be resolved to a type. Why?

1.6k Views Asked by At
PrintStream ps1, ps2;

My compiler tells me that

PrintStream cannot be resolved to a type

Why? This is my professor's code. Why doesn't it work? I thought you could use PrintStream as a type so that you can also write ps1=System.out for example.

1

There are 1 best solutions below

0
On BEST ANSWER

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

you need to import PrintStream class. Just add import java.io.PrintStream; at the beginning of your script.