728x90 반응형 SMALL this1 [JAVA] 생성자 오버로딩 with this 생성자 오버로딩 생성자의 매개변수의 타입과 개수가 다른 같은 이름의 생성자를 여러 개 반들 수 있다. public class Person{ String name; int age; public Person(){ } public Person(String name){ this.name = name; } public Person(String name, int age){ this.name = name; this.age = age; } } 생성자 호출 public class Exam{ public static void main(String args[]){ Person c1 = new Person(); // 기본 생성자 Person c2 = new Person("홍길동"); Person c3 = new Person(.. 2023. 1. 29. 이전 1 다음 728x90 반응형