Java怎样定义接口的关键字?动力节点小编来为大家举例说明。
Aninterface是一个抽象“类”,用于将相关方法与“空”主体分组:
要访问Java接口方法,接口必须由另一个使用implements 关键字(而不是)的类“实现”(有点像继承extends)。接口方法的主体由“实现”类提供:
// interface
interface Animal {
public void animalSound(); // interface method (does not have a body)
public void sleep(); // interface method (does not have a body)
}
// Pig "implements" the Animal interface
class Pig implements Animal {
public void animalSound() {
// The body of animalSound() is provided here
System.out.println("The pig says: wee wee");
}
public void sleep() {
// The body of sleep() is provided here
System.out.println("Zzz");
}
}
class MyMainClass {
public static void main(String[] args) {
Pig myPig = new Pig(); // Create a Pig object
myPig.animalSound();
myPig.sleep();
}
}
interface关键字用于声明只包含抽象方法的特殊类型的类。
要访问接口方法,接口必须由另一个使用implements 关键字(而不是)的类“实现”(有点像继承extends)。接口方法的主体由“实现”类提供。
要实现多个接口,请用逗号分隔它们:
interface FirstInterface {
public void myMethod(); // interface method
}
interface SecondInterface {
public void myOtherMethod(); // interface method
}
// DemoClass "implements" FirstInterface and SecondInterface
class DemoClass implements FirstInterface, SecondInterface {
public void myMethod() {
System.out.println("Some text..");
}
public void myOtherMethod() {
System.out.println("Some other text...");
}
}
class MyMainClass {
public static void main(String[] args) {
DemoClass myObj = new DemoClass();
myObj.myMethod();
myObj.myOtherMethod();
}
}
以上就是关于“Java定义接口的关键字”的介绍,大家如果想了解更多相关知识,不妨来关注一下动力节点的Java在线学习,里面的课程内容细致全面,适合没有基础的小伙伴学习,相信对大家一定会有所帮助的哦。
你适合学Java吗?4大专业测评方法
代码逻辑 吸收能力 技术学习能力 综合素质
先测评确定适合在学习