您现在的位置: J2ME开发网 >> 参考源码 >> J2SE源码 >> 语言基础 >> 例子正文
J2SE 5.0的static import
作者:未知    例子来源:未知    点击数:    更新时间:2006-5-12
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();
    }
  }
}