[Java] Relational Operators 비교 연산자 공부하기 !
비교 연산자 (Relational Operators) 라고 하면 어떤 것들이 떠오르나요?
일단 비교 연산자라고 하니 두 개이상의 대상을 비교해야 하는/ 할 수 있는 연산자라고 생각이 듭니다.
기본적으로 비교연산자는 항상 Boolean value를 return 합니다.
즉, 참 혹은 거짓만 비교 연산자의 결과값이 될 수 있습니다.
Here are a few relational operators:
아래 비교 연산자들의 예시들을 몇개 보겠습니다.
< : less than. 작다
<=: less than or equal to. 작거나 같다.
>: greater than. 크다.
>=: greater than or equal to. 크거나 같다.
A relational operator is placed between the two operands (the terms that you want to compare using the relational operator). The result of a relational operation is printed out in the following statement:
비교 연산자는 두 숫자 사이에 위치하게 되며, 항상 왼쪽을 기준으로 설명합니다.
예를 들어,
System.out.println(5 < 7); 와 같은 코드를 작성했다면, 5가 7 보다 크다는 논리식이 옳기 때문에 true라는 결과값을 반환할 것입니다.
relational operator는 항상 boolean value만 반환합니다. 기억하세요 !
'Study > Java Programming' 카테고리의 다른 글
[Java] Operator tutorials 연산 공부 정리 (0) | 2018.08.03 |
---|---|
[Java] Equality Operator 동등연산자 공부하기 ! (0) | 2018.08.02 |
[Java] Modular Arithmetic 모듈러 연산, 나머지 연산자 공부하기 ! (0) | 2018.08.02 |
[Java] Math : " +, -, *, and / " 사칙연산 (0) | 2018.08.02 |
[Java] Comment 주석 공부하기 ! (0) | 2018.08.02 |