随笔分类 - Java学习之函数式接口、Stream流、反射
摘要:Student类: public class Student { public void study(){ System.out.println("好好学习,天天向上"); } } View Code Teacher类: public class Teacher { public void teac
阅读全文
摘要:public class ReflectTest { public static void main(String[] args) throws NoSuchMethodException, InvocationTargetException, IllegalAccessException { Ar
阅读全文
摘要:public class ReflectDemo04 { public static void main(String[] args) throws ClassNotFoundException, NoSuchMethodException, IllegalAccessException, Invo
阅读全文
摘要:Method[] getMethods() 返回包含一个数组 方法对象反射由此表示的类或接口的所有公共方法类对象,包括那些由类或接口和那些从超类和超接口继承的声明。 public class ReflectDemo03 { public static void main(String[] args)
阅读全文
摘要:public class ReflectDemo02 { public static void main(String[] args) throws ClassNotFoundException, NoSuchMethodException, IllegalAccessException, Invo
阅读全文
摘要:Field[] getFields() 返回包含一个数组Field对象反射由此表示的类或接口的所有可访问的公共字段类对象。 public class ReflectDemo01 { public static void main(String[] args) throws ClassNotFound
阅读全文
摘要:public class ReflectDemo03 { public static void main(String[] args) throws ClassNotFoundException, NoSuchMethodException, IllegalAccessException, Invo
阅读全文
摘要:Student类: package com.reflect_02; public class Student { private String name; int age; public String address; //构造方法:1个私有,1个默认,2个公开 public Student() {
阅读全文
摘要:public class ReflectDemo02 { public static void main(String[] args) throws ClassNotFoundException, NoSuchMethodException, IllegalAccessException, Invo
阅读全文
摘要:public class ReflectDemo { public static void main(String[] args) throws ClassNotFoundException { //1.使用类的class属性来获取该类对应的Class对象。 Class<Student> c1 =
阅读全文
摘要:public class CollectorDemo { public static void main(String[] args) { List<String> list = new ArrayList<>(); list.add("林青霞"); list.add("张曼玉"); list.ad
阅读全文
摘要:public class StreamTest { public static void main(String[] args) { //创建集合存储元素 ArrayList<String> manArray = new ArrayList<>(); manArray.add("刘德华"); man
阅读全文
摘要:public class StreamDemo06 { public static void main(String[] args) { ArrayList<String> list = new ArrayList<>(); list.add("赵敏"); list.add("张无忌"); list
阅读全文
摘要:public class StreamDemo05 { public static void main(String[] args) { //创建一个集合,存储多个字符串元素 ArrayList<String> list = new ArrayList<>(); list.add("10"); li
阅读全文
摘要:public class StreamDemo04 { public static void main(String[] args) { //创建一个集合添加元素 ArrayList<String> list = new ArrayList<>(); list.add("linqingxia");
阅读全文
摘要:public class StreamDemo03 { public static void main(String[] args) { //创建一个集合 ArrayList<String> list = new ArrayList<>(); list.add("赵敏"); list.add("张无
阅读全文
摘要:public class StreamDemo02 { public static void main(String[] args) { //创建一个集合 ArrayList<String> list = new ArrayList<>(); list.add("赵敏"); list.add("张无
阅读全文
摘要:public class StreamDemo { public static void main(String[] args) { //创建一个集合 ArrayList<String> list = new ArrayList<>(); list.add("赵敏"); list.add("张无忌"
阅读全文
摘要:不使用Stream流完成上述操作代码: public class StreamDemo { public static void main(String[] args) { //创建一个集合,存储多个字符串元素 ArrayList<String> list = new ArrayList<>();
阅读全文
摘要:public class FunctionTest { public static void main(String[] args) { String s = "林青霞,30"; convert(s, s1 -> s1.split(",")[1], s1 -> Integer.parseInt(s1
阅读全文