Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
null == var2つの条件式とvar == nullJavaのif文の違いを知りたいです 。
null == var
var == null
違いはありません。たとえば、次のコードを考えてみましょう
String x = null; if(x==null) { System.out.println("null"); } if(null==x) { System.out.println("no diff"); }
出力
null no diff
つまり差がない
いいえ、ありません。が である場合、両方のステートメントが真varですnull。
var
null