if. 생성자의 매개변수가 많다면 ❓ public class User { private long userSn; private String userId; private String userPw; public User(long userSn) { this.userSn = userSn; } public User(long userSn, String userId) { this.userSn = userSn; this.userId = userId; } public User(long userSn, String userId, String userPw) { this.userSn = userSn; this.userId = userId; this.userPw = userPw; } } 점층적 생성자 패턴도 쓸 수는 있지만, 매개..