Search code examples
javaprintstream

PrintStream cannot be resolved to a type. Why?


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.


Solution

  • 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.