你写了一个接口定义为私有的,你没有实现这个接口,那么你写个接口有什么意义呢?
- package com.itheima;
- //如果你把接口定义为私有则在其他类中无法实现这个接口,那么接口定义又有什么意义?
- interface Show {
- public void showInfo();
- }
- //定义一个类实现接口
- class ShowTest implements Show{
- public void showInfo() {
- System.out.println("这个类中实现了接口 ");
- }
- }
- //这个类用来测试
- public class Test {
- public static void main(String args[]){
- new ShowTest().showInfo(); //匿名对象调用方法
- }
- }
复制代码 |