인터페이스 변수;

변수 = 구현객체;

or

인터페이스 변수 = 구현객체;

 

ex)

RemoteControl = rc;

rc = new Television();

or

RemoteControl rc = new Television();

+ Recent posts