[기초] 클래스의 상속
C++에서는 부모 클래스 변수에 자식 클래스 객체를 넣는 것이 안되었던 것 같은데, java에서는 쉽게 된다.아래와 같은 코드의 구현이 가능하다! public class PersonTest {public static void main(String[] args) {// TODO Auto-generated method stubPerson persons[]=new Person[3];persons[0]=new Person("길동이",22);persons[1]=new Student("황진이",23,100);persons[2]=new ForeignStudent("Amy",30,200,"U.S.A");for(int i=0; i
2017.09.28