-
Notifications
You must be signed in to change notification settings - Fork 4
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
[혁주] Class static block 번역 #54
Open
huckjoo
wants to merge
3
commits into
11st-corp:main
Choose a base branch
from
huckjoo:class-static-block
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
damilog
approved these changes
Jul 13, 2023
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.
LGTM 고생 많으셨어요!!
} | ||
} | ||
``` | ||
게다가, 비공기 선언은 read-only 접근이 바람직한 경우에도, 읽기 및 쓰기 접근을 모두 허용하는 공유된 비공개 상태에 비공개 이름을 노출시킵니다. 비공개 선언을 이용하여 이를 해결하려면 추가적인 복잡성이 필요합니다(`static{}`을 사용하더라도 비슷한 비용이 발생합니다). |
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.
Suggested change
게다가, 비공기 선언은 read-only 접근이 바람직한 경우에도, 읽기 및 쓰기 접근을 모두 허용하는 공유된 비공개 상태에 비공개 이름을 노출시킵니다. 비공개 선언을 이용하여 이를 해결하려면 추가적인 복잡성이 필요합니다(`static{}`을 사용하더라도 비슷한 비용이 발생합니다). | |
게다가, 비공개 선언은 read-only 접근이 바람직한 경우에도, 읽기 및 쓰기 접근을 모두 허용하는 공유된 비공개 상태에 비공개 이름을 노출시킵니다. 비공개 선언을 이용하여 이를 해결하려면 추가적인 복잡성이 필요합니다(`static{}`을 사용하더라도 비슷한 비용이 발생합니다). |
|
||
클래스 `static` 블록은 클래스 정의 평가중에 추가적인 정적(static) 초기화를 수행하는 메커니즘을 제공합니다. | ||
|
||
이는 공개(public) 필드에 대한 대체품으로 의도되지 않았습니다. 공개 필드는 정적 분석 도구에 대한 유용한 정보를 제공해주고, 데코레이터를 위한 유효한 대상이 되기 때문입니다. 대신, 기존 사용 사례를 보완하고 해당 제안으로 현재 처리되고있지 않은 새로운 사용 사례를 가능하게 하는 것을 목적으로 합니다. |
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.
Suggested change
이는 공개(public) 필드에 대한 대체품으로 의도되지 않았습니다. 공개 필드는 정적 분석 도구에 대한 유용한 정보를 제공해주고, 데코레이터를 위한 유효한 대상이 되기 때문입니다. 대신, 기존 사용 사례를 보완하고 해당 제안으로 현재 처리되고있지 않은 새로운 사용 사례를 가능하게 하는 것을 목적으로 합니다. | |
이는 공개(public) 필드에 대한 대체품으로 의도되지 않았습니다. 공개 필드는 정적 분석 도구에 대한 유용한 정보를 제공해 주고, 데코레이터를 위한 유효한 대상이 되기 때문입니다. 대신, 기존 사용 사례를 보완하고 해당 제안으로 현재 처리되고 있지 않은 새로운 사용 사례를 가능하게 하는 것을 목적으로 합니다. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
No description provided.