boolean
불린(Boolean)은 참과 거짓을 의미하는 데이터 타입으로 bool이라고도 부름. 불린은 정수와 문자와 같이 하나의 데이터 타입인데, 참을 의미하는 true와 거짓을의미하는 false 두 가지의 값을 가지고 있다.
public class HelloWorldApp{
public static void main(String[] args) {
System.out.println(1 == 2);
System.out.println(1 == 1);
}
}
출력값
동등 비교연산자 ==
public class HelloWorldApp{ public static void main(String[] args) { System.out.println(1 == 2); //false System.out.println(1 == 1); //true System.out.println("one" == "two"); //false System.out.println("one" == "one"); //true } }
결과값
부정 연산자 !=
public class HelloWorldApp{ public static void main(String[] args) { System.out.println(1 != 2); System.out.println(1 != 1); System.out.println("one" != "two"); System.out.println("one" != "one"); } }
결과값
.equals 연산자
문자열을 비교할 때 사용하는 메소드
public class HelloWorldApp{ public static void main(String[] args) { String a = "HelloWorld"; String b = new String("HelloWorld"); System.out.println(a == b); System.out.println(a.equals(b)); } }
결과값
'프로그래밍 언어 > Java' 카테고리의 다른 글
Android TextInputEditText 숫자 콤마 입력하는 방법 (0) | 2021.10.21 |
---|---|
Android cannot find symbol symbol variable에러 해결 (0) | 2021.10.20 |
Cannot resolve symbol 'R' 해결 (0) | 2021.10.18 |
다른 컴퓨터에서 pull/push할 때 오류 (0) | 2021.10.17 |
Android java activity 추가했는데 어플 팅기는 문제 (AndroidManifest.xml) (0) | 2021.10.16 |