public class Product { private int price; public int getPrice() { return price; } public void setPrice(int price) { this.price = price; } public Product(int price) { // TODO Auto-generated constructor stub this.price = price; } public Product() { this.price = 100; } } int price는 가격을 의미한다. 이 것은 나중에 자식 클래스에서 물건의 값을 설정 할 것이다. public class TV extends Product{ public TV() { // TODO Auto-generated con..