2014-08-07から1日間の記事一覧

Integerを"=="で比較してはいけない

追記:Javaの話です。 public class Main { public static void main(String args[]) throws Exception { Integer i1 = 1; Integer i2 = get1(); if (i1 == i2) { System.out.println("equal"); } else { System.out.println("not equal!!"); } } public sta…