public class equalsTest {
	public static void main(String[] args) {
		 String allowed = null;
	        if(allowed.equals("allowed")){
	            System.out.println("일치");   
	        }else {
	            System.out.println("불일치");
	        }
	}
}

결과 : Exception in thread "main" java.lang.NullPointerException: Cannot invoke "String.equals(Object)" because "allowed" is null at snippet.equalsTest.main(equalsTest.java:6)

 

public class equalsTest {
	public static void main(String[] args) {
		 String allowed = null;
	        if("allowed".equals(allowed)){
	            System.out.println("일치");   
	        }else {
	            System.out.println("불일치");
	        }
	}
}

결과 : 불일치

'Spring > 개념' 카테고리의 다른 글

Listner, 이벤트 리스너  (0) 2022.08.29
스프링, 스프링 부트 비교  (0) 2022.08.23
스프링 빈 생애주기(Life Cycle)  (0) 2022.07.15
URI, URL 비교  (0) 2022.05.30
rs.next() 의 의미  (0) 2022.03.02
복사했습니다!