✅ 오전 수업📌 SmartPhone 클래스와 toString()public class SmartPhone { private String company, os; public SmartPhone(String company, String os) { this.company = company; this.os = os; } public String toString() { return company + ", " + os; }}toString() 메서드를 오버라이드해 객체 출력 시 유의미한 정보를 출력하도록 함.📌 예외 처리 기본 구조NullPointerException 예제와 try-catch 블록 사용법Class.forName()을 통한 Class..