黑马程序员技术交流社区
标题:
接口
[打印本页]
作者:
mingjing56
时间:
2015-4-13 01:01
标题:
接口
interface Animal1
{
int ID =1;
void shout();
void run();
}
class Dog implements Animal1
{
public void shout ()
{
System.out.println("汪汪");
}
public void run()
{
System.out.println("狗四条腿跑得很快");
}
}
class Animal1Test
{
public static void main (String []args)
{
Dog d = new Dog();
d.shout();
d.run();
}
}
//Dog类中的方法得是public修饰
作者:
阳光下的小树
时间:
2015-4-13 08:24
试了,可以运行
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2