-
Notifications
You must be signed in to change notification settings - Fork 115
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Java/Seogeurim #10
Java/Seogeurim #10
Conversation
1. 자바 논리연산자에서 &와 &&의 차이, |와 ||의 차이가 궁금합니다.
논리 연산자를 하나로 표기하면 그럼 다음과 같은 식이 가능합니다. Array에서 가장 주의해야 할 런타임 에러는 ArrayIndexOutOfException입니다.
위의 1, 2 중 1번의 조건식을 써야하는 것입니다. 2. 그리고 비트연산자에도 &와 |이 존재하는데 자바에서는 이걸 어떻게 논리연산자랑 구분해서 실행하는지 궁금합니다. 논리연산자는 피연산자가 boolean 타입일 때 적용되고, 비트연산자는 피연산자가 정수 타입일 때 적용됩니다.
좋은 지적 감사합니다 !! 이 부분은 고쳐서 커밋하겠습니다 ~! |
### 논리 연산자 | ||
|
||
- `boolean` 데이터 타입에 적용되며, `boolean` 타입의 결과를 리턴함 | ||
- `&`, `&&`, `|`, `||`, `!` | ||
- `값1 && 값2`의 경우, `값1`이 `false`인 경우 `값2`를 수행하지 않고 `false`를 리턴한다. | ||
- `값1 || 값2`의 경우, `값1`이 `true`인 경우 `값2`를 수행하지 않고 `true`를 리턴한다. | ||
- `&`, `|` 연산자는 모든 조건을 다 확인한 후 그 결과를 리턴한다. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
수정하였습니다 !! @Hee-Jae
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
오... 이해가 쏙쏙 됐습니다. 전달력이 엄청나시네요!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
객체 지향의 핵심 개념들이 보기 쉽게 정리되어 있네요. 간단한 참고서로 사용하기에 정말 좋을 것 같아요!
자바를 잠깐 배우고 손 놓은지 오래돼서 거의 까먹었는데 다시 자바를 사용하고 싶은 생각이 들때 좋은 자료가 되겠네요ㅎㅎ
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
저도 c++ 정리해서 올려야겠어요;; 그 뭐지 이전에 질문이 JAVA랑 C++차이가 뭐냐고 물어서 오답을 말했답니다 껄껄
좋은 내용 감사합니다.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
플랫폼에 독립적이라는 말을 JVM에서 밖에 못돌리는거 아니야?! 하면서 자바 첨 배울 때 장난처럼 얘기했던게 생각나네요ㅋㅋㅋ 자바는 이상하게 손이 안가서 자바하는 분들 존경합니다!.! 내용 정리 잘 읽었어요
서그림: 이론*4 => +60점 |
변경 사항
Point of discussion
틀린 부분 있다면 말해주세요 !
Reference
SWEA JAVA Programming 강의 수강 정리