首页 > 学院 > 开发设计 > 正文

J2SE 5.0的static import

2019-11-18 14:49:04
字体:
来源:转载
供稿:网友
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();
    }
  }
}

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表