码迷,mamicode.com
首页 > 编程语言 > 详细

java类中定义接口

时间:2014-08-29 21:23:18      阅读:318      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   java   ar   div   log   sp   new   

今天看到一个java类中定义了接口,写个备忘录,记录一下

 1 package com.gxf.test;
 2 
 3 public class Test_interface {
 4     public interface show{
 5         public void show();
 6     }
 7     static class TestInterface implements show{
 8 
 9         @Override
10         public void show() {
11             System.out.println("this is interface!");
12             
13         }
14         
15     }
16     
17     public static void main(String []args){
18         TestInterface testInterface = new TestInterface();
19         testInterface.show();
20     }
21 }

 

java类中定义接口

标签:style   blog   color   java   ar   div   log   sp   new   

原文地址:http://www.cnblogs.com/luckygxf/p/3945747.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!