摘要: 类的构造器使用 首先创建一个类Student public class Student { String name; public Student(String name) { this.name = name; } public Student() { } public String getNam 阅读全文
posted @ 2022-07-25 09:25 一位程序袁 阅读(45) 评论(0) 推荐(0) 编辑
摘要: 方法的引用_通过super引用成员方法 案例: /** * 定义一个见面函数接口 */public interface Human {// 定义一个见面方法 void greet();} 在在定义一个父类 /** * 定义一个见面函数接口 */public interface Human {// 定 阅读全文
posted @ 2022-07-25 09:07 一位程序袁 阅读(21) 评论(0) 推荐(0) 编辑
摘要: 方法引用的基本介绍 首先我们先来定义一个打印的接口 public class PrintableImpl { public static void PrintString(Printable printable){ printable.pring("HelloWorld"); } public st 阅读全文
posted @ 2022-07-25 08:41 一位程序袁 阅读(42) 评论(0) 推荐(0) 编辑