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.
サーブレットからの値と、受け取っているパラメーターの1つがあります
request.getParameterValues("Names");
私はそれを割り当てています
String names[] = null; names = request.getParameterValues("Names");
次の方法で名前が null かどうかを確認していますが、null でも条件が実行されません。この理由は何でしょうか?
if(names!= null)
名前がnullかどうかを確認しています
だからそうあるべきだif(names == null)
if(names == null)