-
Notifications
You must be signed in to change notification settings - Fork 0
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 Assignment3 upload by LeeJaewon #32
base: main
Are you sure you want to change the base?
Conversation
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.
고생하셨습니다.
|
||
private Electronics() { | ||
|
||
} |
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.
굳
|
||
Electronic[] groupByCompanyName(Company company) { | ||
return Arrays.stream(this.electronicList) | ||
.filter(electronic -> electronic.getCompanyName().equals(company)) |
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.
CompanyName과 Company 용어를 통일하면 어떨까요?
getCompanyName()으로 Company를 반환하니 헷갈리네요.
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.
네 반환되는 값이 Company array이니 메소드명을 groupByCompany()으로 바꾸는게 좋아보입니다!
Assignment3