如何用Java编写接口名称?
在编写接口/类名称时,需要牢记以下几点。
接口/类名称的首字母应为大写,其余字母应为小写(混合大小写)。
interface Sample
同样,名称中每个单词的首字母应大写,其余字母应小。
interface MYInterface
建议使接口名称保持简单和描述性。
编写接口/类名称时最好不要使用首字母缩写词。
示例
interface MyInterface {
void sample();
void demo();
}
public class Test implements MyInterface {
public void sample() {
System.out.println("This is sample method");
}
public void demo() {
System.out.println("This is demo method");
}
public static void main(String args[]) {
Test obj = new Test();
obj.sample();
obj.demo();
}
}输出结果
This is sample method This is demo method
热门推荐
10 祝女儿简短祝福语大全
11 大学新年祝福语简短创意
12 元旦适合的祝福语简短
13 朋友出远门祝福语简短
14 初六简短的祝福语
15 祝男孩生日祝福语简短
16 同事调离的祝福语简短
17 拜年红包的祝福语简短
18 妈妈生日祝福语简短励志