package lang;

class Integer01 {
  public static void main(String[] args) {
    try {
      print(new Integer(1));
      print(new Integer("10"));
      print(new Integer("abc"));
    }
    catch(Exception ex) {
      ex.printStackTrace();
    }
  }
  private static void print(Integer i) {
    System.out.println(""+i);
  }
}


==
・目次 - Java言語プログラミング入門
  http://blogs.yahoo.co.jp/artery2020/39975776.html
・目次 - ビジネスパーソンの常識と非常識
  http://blogs.yahoo.co.jp/artery2020/39728331.html
・目次 - 論理・発想・思考についての考察と鍛え方
  http://blogs.yahoo.co.jp/artery2020/39657784.html
==