장점 1. 이름을 가질 수 있다. // Example public class Person{ private String job; // 생성자 public Person(String job){ this.job = job; } // 정적 팩터리 메서드 static Person jobOf(String job){ return new Person(job); } } public class Main{ public static void main(String[] args){ // 생성자 이용 Person p1 = new Person("student"); // 정적 팩터리 메서드 이용 Person p2 = Person.jobOf("student"); } } 위의 예시에서 Person 인스턴스를 만들 때, 생성자를 이용하는 경..