Java8新特性---数组引用

java8新特性—Lambda表达式
java8新特性—方法引用
java8新特性—构造器引用

格式如下:

  • 格式:   type(数组类型)::new
@Test
	public void Test() {
		Function<Integer, String[]> fun1 = (x) ->new String[x];		//使用Lambda表达式
		System.out.println(fun1.apply(10).length);					
		Function<Integer, String[]> fun2 = String[]::new;			//使用数组引用
		System.out.println(fun2.apply(20).length);
	}
上一篇:函数的参数类型 指针和指针的引用的区别


下一篇:指定目录中所有文件和文件夹的递归显示