업캐스팅, 다운캐스팅
·
Programming/Java
캐스팅이란?- 타입을 변환하는 것. 형변환- 부모와 자식 클래스 간 형변환 가능 Upcasting- 자식 클래스의 객채가 부모 클래스 타입으로 형변환 되는 것- p는 Student 객체를 가리키지만, p는 Person 타입이기 때문에 Person 멤버에만 접근 가능하다.class Person{ String name; Person(String name){ this.name = name; }}class Student extends Person{ String check; Student(String name){ super(name); }}public class Main{ public static void main(String[] args){ Student s = new Student("홍길동"); Per..