【JavaSE】接口 详解(下)

前言

欢迎关注个人主页:逸狼


创造不易,可以点点赞吗~

如有错误,欢迎指出~



目录

前言

接口实例运用

代码举例理解

比较对象的年龄

比较对象的姓名

利用冒泡排序实现Array.sort

年龄比较器

姓名比较器

比较示例测试

clone接口

浅拷贝和深拷贝

浅拷贝

图解

代码举例

深拷贝

图解

代码举例


接口实例运用

接口实现比较引用数据类型(对于引用类型数据来说,不能直接用大于小于号来比较)

代码举例理解

这里要比较两个对象的大小(指定某种方式比较,比如 年龄等)

比较对象的年龄

package demo6;//接口Comparable 实现 比较引用类型数据的方法,这里面的comparable 的compareTo需要重写
class Student implements Comparable<Student>{public String name;public int age;public Student(String name, int age) {this.name = name;this.age = age;}@Overridepublic String toString() {return "Student{" +"name='" + name + '\'' +", age=" + age +'}';}@Override//要重写这个方法public int compareTo(Student o) {/*    if(this.age>o.age){//this表示当前对象,o表示传的参数return 1;}else if(this.age<o.age){return 0;}else{return -1;}*///代码改良return this.age-o.age;}
}public class Test6 {public static void main(String[] args) {Student student1=new Student("zhangsan",20);Student student2=new Student("lisi",5);
//        比较student1和student2,如果1大于2,返回大于0的数字,否则返回小于0的数字if(student1.compareTo(student2)>0){//调用的是student1的比较方法,传的是参数是student2System.out.println("student1>student2");}else{System.out.println("student1<=student2");}}
}

测试结果

比较对象的姓名

name是String类型,Java里面自带了字符串比较方法compareTo,比较的是字符串的ASCII码值

        @Override//要重写这个方法public int compareTo(Student o) {if(this.name.compareTo(o.name)>0){//this表示当前对象,o表示传的参数return 1;}else if(this.name.compareTo(o.name)==0){return 0;}else{return -1;}

这里有问题:Comparable接口有局限性(一旦这个类写死了比较方式,就不能随意更改)

利用冒泡排序实现Array.sort

public class Test6 {//冒泡排序 模拟实现引用数据类型的排序public static void mySort(Comparable[] comparable){for (int i = 0; i < comparable.length-1; i++) {for (int j = 0; j < comparable.length-1-i; j++) {if(comparable[j].compareTo(comparable[j+1])>0){//交换Comparable tmp=comparable[j];comparable[j]=comparable[j+1];comparable[j+1]=tmp;}}}}public static void main(String[] args) {Student[] students=new Student[3];students[0]=new Student("zhangsan",8);students[1]=new Student("lisi",4);students[2]=new Student("wangwu",10);mySort(students);System.out.println(Arrays.toString(students));}}

代码结果(这里是根据学生的年龄排的结果)

年龄比较器

package demo;import java.util.Comparator;public class AgeComparator implements Comparator<Student> {@Overridepublic int compare(Student o1, Student o2) {return o1.age-o2.age;}
}

姓名比较器

package demo;import java.util.Comparator;public class NameComparator implements Comparator<Student> {@Overridepublic int compare(Student o1,Student o2) {return o1.name.compareTo(o2.name);}
}

比较示例测试

public class Test {public static void main(String[] args) {Student student1=new Student("zhangsan",4);Student student2=new Student("lisi",6);//年龄比较器AgeComparator ageComparator=new AgeComparator();int ret=ageComparator.compare(student1,student2);System.out.println(ret);//名字比较器NameComparator nameComparator=new NameComparator();int ret2=nameComparator.compare(student1,student2);System.out.println(ret2);}

clone接口

前提:任何一个对象默认都是继承Object类的(是所有类的父类)

package demo3;class Student implements Cloneable{//CloneNotSupportedException 必须实现Cloneable接口public int age;public Student(int age) {this.age = age;}@Overridepublic String toString() {return "Student{" +"age=" + age +'}';}@Overrideprotected Object clone() throws CloneNotSupportedException {return super.clone();//Object中的clone方法使用了protected修饰,所以要重写,并用super访问}
}public class Test {public static void main(String[] args)  throws CloneNotSupportedException {Student student1=new Student(10);Student student2=(Student)student1.clone() ;//clone是父类方法,在子类中使用要强制转换 (向下转型)}
}

浅拷贝和深拷贝

浅拷贝

两个引用指向一个对象,如两个Student指向一个Money

图解

代码举例

package demo3;class Money {public double money=12.5;
}class Student implements Cloneable{//CloneNotSupportedException 必须实现Cloneable接口public int age;public Money m=new Money();public Student(int age) {this.age = age;}@Overridepublic String toString() {return "Student{" +"age=" + age +'}';}@Overrideprotected Object clone() throws CloneNotSupportedException {return super.clone();//Object中的clone方法使用了protected修饰,所以要重写,并用super访问}
}public class Test {public static void main(String[] args)  throws CloneNotSupportedException {Student student1=new Student(10);Student student2=(Student)student1.clone() ;//clone是父类方法,在子类中使用要强制转换 (向下转型)System.out.println(student1.m.money);//12.5System.out.println(student2.m.money);//12.5System.out.println("============");student2.m.money=100;System.out.println(student1.m.money);System.out.println(student2.m.money);}
}

打印结果

这里通过对象student2修改了money,而student1的money也被修改了

深拷贝

两个引用指向两个对象,如两个Student指向两个个Money

图解

代码举例

package demo3;class Money implements Cloneable{//表示Money支持克隆功能public double money=12.5;@Overrideprotected Object clone() throws CloneNotSupportedException {//要重写克隆方法return super.clone();}
}class Student implements Cloneable{//CloneNotSupportedException 必须实现Cloneable接口public int age;public Money m=new Money();public Student(int age) {this.age = age;}@Overridepublic String toString() {return "Student{" +"age=" + age +'}';}@Overrideprotected Object clone() throws CloneNotSupportedException {Student tmp=(Student)super.clone();tmp.m=(Money)this.m.clone();return tmp;}
}public class Test {public static void main(String[] args)  throws CloneNotSupportedException {Student student1=new Student(10);Student student2=(Student)student1.clone() ;//clone是父类方法,在子类中使用要强制转换 (向下转型)System.out.println(student1.m.money);//12.5System.out.println(student2.m.money);//12.5System.out.println("============");student2.m.money=100;System.out.println(student1.m.money);System.out.println(student2.m.money);}
}

打印结果

这里通过对象student2修改了money,student1的money不会被修改。

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/804040.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

C语言 | Leetcode C语言题解之第17题电话号码的字母组合

题目&#xff1a; 题解&#xff1a; char phoneMap[11][5] {"\0", "\0", "abc\0", "def\0", "ghi\0", "jkl\0", "mno\0", "pqrs\0", "tuv\0", "wxyz\0"};char* digits…

BERT论文解读及情感分类实战

文章目录 简介BERT文章主要贡献BERT模型架构技术细节任务1 Masked LM&#xff08;MLM&#xff09;任务2 Next Sentence Prediction (NSP)模型输入 下游任务微调GLUE数据集SQuAD v1.1 和 v2.0NER 情感分类实战IMDB影评情感数据集数据集构建模型构建超参数设置训练结果注意事项 简…

python把视频按帧转化为图片并保存

参考链接&#xff1a;pythonopencv 将.mp4视频每一帧转为jpg图片_将mp4每一帧转化为图片-CSDN博客 from cv2 import VideoCapture from cv2 import imwrite# 定义保存图片函数 # image:要保存的图片名字 # addr&#xff1b;图片地址与相片名字的前部分 # num: 相片&#xff0c…

系统架构最佳实践 -- 智慧图书管理系统架构设计

随着数字化时代的到来&#xff0c;智慧图书管理系统在图书馆和机构中扮演着重要的角色。一个优秀的图书管理系统不仅需要满足基本的借阅管理需求&#xff0c;还需要具备高效的性能、良好的扩展性和稳定的安全性。本文将讨论智慧图书管理系统的架构设计与实现&#xff0c;以满足…

Debian安装1panel管理面板教程-最新

1Panel 是一个现代化、开源的 Linux 服务器运维管理面板。 1Panel面板是一个强大的服务器管理工具&#xff0c;它通过提供一站式管理、易于使用的界面、高度的可定制性、安全可靠的性能、强大的扩展性以及活跃的社区支持&#xff0c;为用户提供了一个高效、便捷的管理解决方案…

test4101

欢迎关注博主 Mindtechnist 或加入【Linux C/C/Python社区】一起学习和分享Linux、C、C、Python、Matlab&#xff0c;机器人运动控制、多机器人协作&#xff0c;智能优化算法&#xff0c;滤波估计、多传感器信息融合&#xff0c;机器学习&#xff0c;人工智能等相关领域的知识和…

Vue项目自动注入less、sass、scss、stylus全局变量

一、Vue2项目 // vue.config.js const path require(path) module.exports {css: {loaderOptions: {// 给 sass-loader 传递选项sass: {// / 是 src/ 的别名// 所以这里假设有 src/assets/style/var.sass 这个文件// 注意&#xff1a;在 sass-loader v8 中&#xff0c;这个选…

QT_数据库

查看QT支持的数据库类型 主要代码: QStringList sl QSqlDatabase::drivers(); foreach(QString str, sl) {qDebug() << str; }程序输出: "QSQLITE" "QODBC" "QODBC3" "QPSQL" "QPSQL7"如果想使用其他数据库&#…

提问cpp之编译单元

提问cpp之编译单元 提问1&#xff1a;回答1&#xff1a;为什么模板都写在头文件里&#xff0c;写在.cpp文件会怎样&#xff1f;头文件中直接定义int a会有什么问题&#xff1f;为什么重复定义会出问题&#xff0c;这是谁判断的&#xff1f; 提问2&#xff1a;回答2&#xff1a;…

featup入坑笔记

一、新建环境 在conda中建立一个虚拟环境featup&#xff0c; conda create -n featup python3.9 二、开始配置&#xff1a; 我是先下载了FeatUp&#xff0c;之后 pip install -e . -i https://mirrors.aliyun.com/pypi/simple/ 但是&#xff0c;突然出错了&#xff0c;说无法…

leetcode2529-正整数和负整数的最大计数

题目: 给你一个按 非递减顺序 排列的数组 nums &#xff0c;返回正整数数目和负整数数目中的最大值。 换句话讲&#xff0c;如果 nums 中正整数的数目是 pos &#xff0c;而负整数的数目是 neg &#xff0c;返回 pos 和 neg二者中的最大值。 注意&#xff1a;0 既不是正整数…

MyBatis输出映射

1 resultType resultType: 执行 sql 得到 ResultSet 转换的类型&#xff0c;使用类型的完全限定名或别名。如果返回的是集合&#xff0c;设置的是集合元素的类型&#xff0c;而不是集合本身。resultType 和 resultMap&#xff0c;不能同时使用。 1.1 输出简单类型 案例&…

记Kubernetes(k8s):访问 Prometheus UI界面:Warning: Error fetching server time

记Kubernetes&#xff08;k8s&#xff09;&#xff1a;访问 Prometheus UI界面:Warning: Error fetching server time 1、报错详情2、解决3、再次访问 PrometheusUI界面 &#x1f496;The Begin&#x1f496;点点关注&#xff0c;收藏不迷路&#x1f496; 1、报错详情 Warning:…

软件杯 深度学习人体跌倒检测 -yolo 机器视觉 opencv python

0 前言 &#x1f525; 优质竞赛项目系列&#xff0c;今天要分享的是 &#x1f6a9; **基于深度学习的人体跌倒检测算法研究与实现 ** 该项目较为新颖&#xff0c;适合作为竞赛课题方向&#xff0c;学长非常推荐&#xff01; &#x1f947;学长这里给一个题目综合评分(每项满…

MyBatis事务管理

MyBatis的事务管理是由TransactionFactory和Transaction两个接口定义的&#xff0c;TransactionFactory负责生成Transaction&#xff0c;这是一个典型的工厂模式。 官方提供了事务管理的两种模式&#xff1a; Managed&#xff1a;对应ManagedTransactionFactory和ManagedTran…

第四百四十一回 再谈flutter_native_splash包

文章目录 1. 知识回顾2. 使用方法3. 示例代码4. 经验与总结4.1 经验分享4.2 内容总结 我们在上一章回中介绍了"overlay_tooltip简介"相关的内容&#xff0c;本章回中将 再谈flutter_native_splash包.闲话休提&#xff0c;让我们一起Talk Flutter吧。 1. 知识回顾 我…

视频插针调研

视频插针 1、评估指标2、准确度3、实时4、视频流处理3、实时RIFE视频插帧测试 1、评估指标 参考&#xff1a;https://blog.csdn.net/weixin_43478836/article/details/104159648 https://blog.csdn.net/weixin_43605641/article/details/118088814 PSNR和SSIM PSNR数值越大表…

面试准备 集合 List

ArrayList 底层实现 使用Object[] 动态数组进行存储 特性 支持存储null值非线程安全支持快速访问 初始化方法 无参–返回一个空的列表&#xff08;DEFAULTCAPACITY_EMPTY_ELEMENTDATA&#xff09;指定初始容量&#xff1a; new ArrayList(20);指定集合 new ArrayList(col…

Opencv驱动摄像头

Opencv驱动摄像头&#xff0c;此段代码只能驱动电脑自带摄像头&#xff0c;目前没有分析出为何不能驱动另外连接的相机&#xff01; #include<iostream> #include<opencv2\core.hpp> #include<opencv2\highgui.hpp> #include<opencv2\imgproc.hpp> #i…

ubuntu下NTFS分区无法访问挂载-解决办法!

Ubuntu系统下&#xff0c;有的时候发现&#xff0c;挂载的NTFS文件系统硬盘无法访问。点击弹出类似问题&#xff1a; Error mounting /dev/sda1 at /media/root/新加卷: Command-line mount -t "ntfs" -o "uhelperudisks2,nodev,nosuid,uid0,gid0" "/…