자바의 생성자와 정적 팩토리 메서드
생성자 일반적으로 클래스는 인스턴스 필드와 생성자를 갖는다. row와 column으로 이루어진 Position 클래스는 아래와 같이 표현할 수 있다. public class Position { private final int row; private final int column; public Position(int row, int column) { this.row = row; this.column = column; } } 만약 파라미터로 Int 뿐만 아니라 String도 받게 하고 싶다면 아래와 같이 코드를 추가할 수 있다. public class Position { private final int row; private final int column; public Position(int row, int..
2020.04.20