java中的interface接口实例详解
作者:Engineer-MrYang 时间:2023-10-12 22:03:10
java中的interface接口实例详解
接口:Java接口是一些方法表征的集合,但是却不会在接口里实现具体的方法。
java接口的特点如下:
1、java接口不能被实例化
2、java接口中声明的成员自动被设置为public,所以不存在private成员
3、java接口中不能出现方法的具体实现。
4、实现某个接口就必须要实现里面定义的所有方法。
接下来看一个实现接口的案例:
package hello;
interface competer{ //定义接口
void set_compt(int com);
void print_compt_information();
}
class bj implements competer{ //接口实现
int com ;
public void set_compt(int com)
{
this.com = com ;
// System.out.println("端口" + com);
}
public void print_compt_information()
{
System.out.println("端口" + com);
System.out.println("笔记本");
}
}
class taishi implements competer{
int com ;
public void set_compt(int com)
{
this.com = com ;
//System.out.println("端口" + com);
}
public void print_compt_information()
{
System.out.println("端口" + com);
System.out.println("台式机");
}
}
public class inter {
public static void main(String[] args)
{
taishi com = new taishi();
bj bjj = new bj();
com.set_compt(100);
bjj.set_compt(120);
com.print_compt_information();
bjj.print_compt_information();
}
}
运行结果:
端口100
台式机
端口120
笔记本
感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!
来源:http://blog.csdn.net/morixinguan/article/details/52955027
标签:java,interface
0
投稿
猜你喜欢
C# 添加、修改和删除PDF书签的实例代码
2022-09-24 06:45:55
springboot使用GuavaCache做简单缓存处理的方法
2022-12-04 22:43:02
java 使用异常的好处总结
2023-11-29 13:35:49
C#中foreach原理以及模拟的实现
2022-04-07 23:18:12
找出链表倒数第n个节点元素的二个方法
2022-07-20 13:35:40
IDEA安装后找不到.vmoptions文件的问题及解决
2023-10-05 22:43:44
Android实现界面跳转功能
2022-05-07 21:51:32
C#中正则表达式(Regex)过滤内容的基本使用方法
2023-11-26 12:51:00
Java深入浅出掌握SpringBoot之MVC自动配置原理篇
2022-04-16 02:14:34
java将一个目录下的所有数据复制到另一个目录下
2023-01-08 15:11:44
JavaFx实现拼图游戏
2022-04-20 01:05:05
Java八种基本变量作为类的成员变量的默认值操作
2022-06-25 04:55:58
Android自定义View实现水面上涨效果
2023-03-02 22:13:06
Java并发编程之Fork/Join框架的理解
2023-09-30 14:14:01
Spring Boot深入排查 java.lang.ArrayStoreException异常
2023-07-11 16:31:27
SpringBoot Data JPA 关联表查询的方法
2021-08-08 13:59:23
Android开发中判断手机是否安装了QQ或者微信
2022-01-09 08:44:24
C#文件上传与下载的实现方法
2023-08-19 04:18:50
Java Swing实现JTable检测单元格数据变更事件的方法示例
2022-10-16 19:49:29
java 字浮串提取方法汇集
2023-11-24 14:43:16