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

Java Lamda Expression에 명명규칙이 어긋나 문법 구조를 파악하는데 어려움이 있습니다! #16

Open
jyeonjyan opened this issue Aug 20, 2021 · 0 comments

Comments

@jyeonjyan
Copy link

jyeonjyan commented Aug 20, 2021

안녕하세요. 좋은 자료들 잘 봤습니다. 🙋🏻‍♂️
현재 java/Java Lamda Expression 자바 명명규칙에 어긋난 부분이 있어 해석에 부재가 있을 것 같아 이슈 남깁니다.

람다식 기본 문법 섹션에 ComareExam.class 를 보면 개행도 맞지 않고, exec()의 파라미터가 가 Compare로 카멜케이스가 아닙니다.

public static void exec(Compare Compare) (x)
public static void exec(Compare compare) (o)

이는 value 의 값을 대입하는 과정에서 해석의 부재가 생깁니다.. int value = Compare.compareTo(k, m); 보다,
int value = compare.compareTo(k, m); 이 인터페이스와 변수가 확실하게 구분 돼 가독성이 높아져 문법 해석의 오류가 없을 것 같습니다.

이 레포를 보고 공부하시는 독자들을 위해 이 점 FIX 해주시면 감사하겠습니다 🙇🏻‍♂️

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

No branches or pull requests

1 participant