接口
声明和初始化
方法要求
接口继承
符合性检查(is, as)
默认方法
接口集合
继承限制
interface
Printable
{
void
Print
();
}
Printable
printable =
new
Printable
();
//<- Error