|
|
作者:未知 声明:本站收集的源码来自互联网,经过了管理员的细心整理,提供给开发者学习之用。未经本站允许请勿转载!
import static java.lang.System.err;
import static java.lang.System.out;
import java.io.IOException;
import java.io.PrintStream;
public class StaticImporter {
public static void writeError(PrintStream err, String msg)
throws IOException {
// Note that err in the parameter list overshadows the imported err
err.println(msg);
}
public static void main(String[] args) {
out.println("Good morning, " + "java2s");
out.println("Have a day!");
try {
writeError(System.out, "Error occurred.");
} catch (IOException e) { e.printStackTrace();
}
}
}
|
|