Polymorphism of Parameters (매개변수의 다형성) Method의 매개변수로 부모클래스의 자손 타입의 참조변수라면 어느 것이나 매개 변수로 받아 들일 수 있다. 상속 할 제품 조상 클래스. public class Product { int price; //제품의 가격 int bonusPoint;//제품 구매시 주어지는 포인트 Product(int price){ this.price = price; bonusPoint = (int)(price/10.0);//보너스 포인트는 제품의 10% } } 상속 받을 제품 자식 클래스. public class Tv1 extends Product {//Product에서 상속 받는다. Tv1(){ super(100);// 조상클래스의 생성자를 호출하여 100..