Skip to content
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

test: 코드 리뷰 테스트 #31

Closed
wants to merge 1 commit into from

Conversation

jcw1031
Copy link
Member

@jcw1031 jcw1031 commented Aug 9, 2024

#️⃣ 연관된 이슈

ex) #이슈번호, #이슈번호

📝 작업 내용

이번 PR에서 작업한 내용을 간략히 설명해주세요(이미지 첨부 가능)

  • 테크 스펙 : (테크 스펙 url)

스크린샷 (선택)

💬 리뷰 요구사항(선택)

리뷰어가 특별히 봐주었으면 하는 부분이 있다면 작성해주세요

ex) 메서드 XXX의 이름을 더 잘 짓고 싶은데 혹시 좋은 명칭이 있을까요?


RCA 룰

| 코드 리뷰 멘토가 PR작성자에게 어떤 의도로 전달 되길 바라는지 알파벳으로 표현해주세요!

  • r(request change): 꼭 반영
  • c(comment): 왠만하면 반영
  • a(approve): 반영해도 좋고 넘어가도 좋은 의견


public static void main(String[] args) {
new Thread(() -> {
while (!flag) {
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

r: while (!flag) 루프는 무한 루프가 될 수 있으며, flag가 변경될 때까지 대기하는 것은 비효율적입니다. flag가 변경될 때까지 대기하는 방법을 개선해야 합니다.

new Thread(() -> {
while (!flag) {
}
System.out.println("value: " + value);
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

c: System.out.println 대신 로깅 프레임워크를 사용하는 것이 좋습니다. 이는 코드의 유지보수성을 높이고, 로그 레벨을 조정할 수 있는 장점이 있습니다.

}).start();

new Thread(() -> {
value = 42;
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

c: valueflag의 접근을 동기화해야 합니다. 현재 상태에서는 멀티스레드 환경에서 데이터 일관성이 보장되지 않습니다.

@jcw1031 jcw1031 closed this Aug 9, 2024
@hek-git hek-git deleted the 14-test/ai-review-test branch August 13, 2024 08:03
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant