[이것이 자바다] 9장 중첩 클래스와 중첩 인터페이스 확인문제 4번

이현경·2021년 4월 30일
0

JAVA

목록 보기
69/77
  1. 다음과 같이 Car 클래스 내부에 Tire와 Engine이 멤버 클래스로 선언되어 있습니다. NestedClassExample에서 멤버 클래스의 객체를 생성하는 코드를 작성해보세요.
package q04;

public class Car {

	class Tire {}
	static class Engine{}
}
package q04;

public class NestedClassExample {

	public static void main(String[] args) {
		Car myCar = new Car();
		
		Car.Tire tire = // 작성위치
				
		Car.Engine engine = // 작성위치
	}

}

profile
25. 컴퓨터학과 졸업 / SQLD, 정보처리기사 취득

0개의 댓글