폴리모피즘 비슷한 객체를 '같은종류'라는 시점에서 생각해 공통된 조작 방법으로 다루는 것 CalcQuiz.java import java.util.Random; class CalcQuiz { //계산 문제를 1개 만드는 클래스 String question; // 문제를 저장할 필드 String answer; // 답을 저장할 필드 CalcQuiz() { // 생성자 createQuestion(); } void createQuestion(){ Random rnd = new Random(); int a = rnd.nextInt(100); int b = rnd.nextInt(100); this.question = a + "x" + b + "=?"; this.answer = Integer.toString(a * ..