"이미 쉬셨군요. 좋아요! 다음은 생성자 생성을 연습할 수 있는 몇 가지 작업입니다."

2
과제
Java Syntax,  레벨 5레슨 9
잠금
You can't buy friends
In English, "to make friends" simply means "to get to know someone else and establish a friendship". It doesn't make to "make" or "create" someone. But I must say, it does sound like something is being built. Let's take this idiom from English into Java: We'll make a Friend class with three constructors. The first constructor will take a name. The second will also take an age. And the third will also take a gender.
4
과제
Java Syntax,  레벨 5레슨 9
잠금
Creating cats
Create valid cats in an unnatural way: using constructors. Let's create a Cat class and declare five different constructors. The simplest constructor contains one parameter: name. The next has name and age. And we'll add weight to the third. Read about the rest in the task conditions.