10
사용자 정의 객체를 매개 변수로 사용하지 않아야합니까?
사용자 정의 객체 Student 가 있다고 가정합니다 . public class Student{ public int _id; public String name; public int age; public float score; } 그리고 학생의 정보를 표시하는 데 사용되는 Window 클래스 는 다음과 같습니다. public class Window{ public void showInfo(Student student); } 그것은 정상적인 것처럼 보이지만 Window 는 함수를 …