개발을 하다 여러 줄을 동시에 편집해야 하는 순간이 생깁니다. Column Selection Mode(컬럼 선택 모드)? 먼저 컬럼 선택 모드라 부르는 기능이 무엇인지 살펴볼 필요가 있습니다. public class Student { private int age; private int tall; private String name; private String phoneNum; public Student(int age, int tall, String name, String phoneNum) { this.age = age; this.tall = tall; this.name = name; this.phoneNum = phoneNum; } } 현재 Student 클래스의 인스턴스들은 private으로 선언되어 ..