|
书中接口想要 recordTransport()方法最理想的参数应该是“如果在recordTransport()中可以不去判断参数的类型,而直接调用某个返回值类型为TransportStatus()方法得到TransportStatus类的对象”
然后书中用来完成这个功能的接口程序是这样的:
package com.javarasy.logcarinterface;
public abstract interface RecordeAble{
public abstract TransportStatusForLog getTransportStatus();
}
请问一下,这段程序是如何完成以上功能的? |
|