01.java8入门
函数式编程的不变模式
import java.util.Arrays;
/**
* 函数式编程的不变模式
*/
public class ArrStream {
public static void main(String[] args){
int[] arr = {1,2,3,4,5};
Arrays.stream(arr).map((x)->x+1).forEach(System.out::print);
System.out.println();
Arrays.stream(arr).forEach(System.out::print);
}
//23456
//12345
}
FunctionalInterface注解
/**
* FunctionalInterface注解
*/
@FunctionalInterface //用于表明是一个函数式接口
public interface IntHandler {
void handle(int i);//只包含一个抽象方法
}
@FunctionalInterface //用于表明是一个函数式接口
public interface IntHandler {
boolean equals(Object obj);//此时编译未通过,不是函数式接口,因为equals()方法在java.lang.Object中已经实现
}
/**
* 符合函数式接口要求
*/
@FunctionalInterface //用于表明是一个函数式接口
public interface IntHandler {
boolean equals(Object obj);
void handle(int i);
}
接口的默认方式--default关键字
public interface IHorse {
void eat();
//使用default关键字,可以在接口内定义实例方法
default void run(){
System.out.println("Horse run");
}
}
public interface IAnimal {
default void breath(){
System.out.println("breath");
}
}
public interface IDonkey {
void eat();
default void run(){
System.out.println("Donkey run");
}
}
/**
* 同时拥有不同接口的实现方法
*/
public class Mule implements IAnimal,IHorse,IDonkey {
@Override
public void eat() {
System.out.println("Mule eat");
}
@Override
public void run(){
IHorse.super.run();
}
public static void main(String[] args){
Mule mule = new Mule();
mule.run();
mule.breath();
}
//Horse run
//breath
}
import java.util.function.Function;
/**
* lambda表达式访问外部的局部变量
*/
public class LambdaTest {
public static void main(String[] args){
final int num = 2;//外部的变量必须申明为final,即使省略final也可以编译通过,这是因为Java8会自动将lambda表达式中使用的变量视为final
Function<Integer,Integer> st = (from)->from*num;
System.out.println(st.apply(3));
int num2 = 3;
Function<Integer,Integer> st2 = (from)->from*num2;
num2++;//编译保错 Error:(14, 54) java: 从lambda 表达式引用的本地变量必须是最终变量或实际上的最终变量
}
}
import java.util.ArrayList;
import java.util.List;
/**
* 方法引用:
* 静态方法引用:ClassName::methodName
* 实例上的实例方法引用:instanceReference::methodName
* 超类上的实例方法引用:super:methodName
* 类型上的实例方法引用:ClassName::methodName
* 构造方法引用:Class::methodName
* 数组构造方法引用:TypeName[]::methodName
*
* 方法引用使用::定义,::前半部分表示类名或实例名,后半部分表示方法名称,如果是构造函数,则使用new表示
*/
public class InstanceMethodDemo {
static class User{
private int id;
private String name;
public User(int id, String name) {
this.id = id;
this.name = name;
}
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
}
public static void main(String[] args){
List<User> users = new ArrayList<>();
for (int i = 0; i < 10; i++) {
users.add(new User(i,"name"+Integer.toString(i)));
}
//User::getName,在执行时,java会自动识别流中的元素(这里指User实例)是作为调用目标还是调用方法的参数,
//显然应该作为调用目标,在这里调用每一个User对象实例的getName()方法,并将这些User的name作为一个新的流,
//同时,对于这里得到的所有name,使用方法引用System.out::println进行处理。系统会自动判断,流内的元素此时
//应该作为方法的参数传入,而️不是调用目标
// 一般来说,如果使用的是静态方法,或者调用目标明确,那么流内的元素会自动作为参数使用。如果函数引用表示
//实例方法,并且不存在调用目标,那么流内元素就会自动作为调用目标
users.stream().map(User::getName).forEach(System.out::println);
}
//name0
//name1
//name2
//name3
//name4
//name5
//name6
//name7
//name8
//name9
}
import java.util.ArrayList;
import java.util.List;
public class ConstrMethodRef {
public static void main(String[] args){
List<User> users = new ArrayList<>();
for (int i = 0; i < 10; i++) {
users.add(uf.create(i,"name"+Integer.toString(i)));
}
users.stream().map(User::getName).forEach(System.out::println);
}
//User::new创建接口实例时,系统会根据UserFactory.create()的函数签名来选择合适的User构造函数
//在这里,很显然就是 public User(int id, String name),在创建UserFactory.create()的调用
//都会委托给User的实际构造函数进行,从而创建User对象实例。
static UserFactory<User> uf = User::new;
@FunctionalInterface
interface UserFactory<U extends User>{
U create(int id,String name);
}
static class User{
private int id;
private String name;
public User(int id, String name) {
this.id = id;
this.name = name;
}
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
}
}
01.java8入门的更多相关文章
- Redis 笔记 01:入门篇
Redis 笔记 01:入门篇 ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ...
- SpringMVC札集(01)——SpringMVC入门完整详细示例(上)
自定义View系列教程00–推翻自己和过往,重学自定义View 自定义View系列教程01–常用工具介绍 自定义View系列教程02–onMeasure源码详尽分析 自定义View系列教程03–onL ...
- java8入门 错误:找不到或者无法加载主类
如果你也遇上的这个问题,但是如果你的Java版本不是6以上,这个解决方案可能就不适合你... 最近在跟着李兴华老湿的视频<<编程开发入门Java 8>>的学习Java... 但 ...
- 01 Linux入门介绍
一.Linux 初步介绍 Linux的优点 免费的,开源的 支持多线程,多用户 安全性好 对内存和文件管理优越 系统稳定 消耗资源少 Linux的缺点 操作相对困难 一些专业软件以及游戏支持度不足 L ...
- 01.Bootstrap入门
Bootstrap介绍: Bootstrap,来自 Twitter,是目前很受欢迎的前端框架.Bootstrap 是基于 HTML.CSS.JAVASCRIPT 的,它简洁灵活,使得 Web 开发更加 ...
- 01.Hibernate入门
前言:本文用一个简单的Hibernate应用程序例子来引领初学者入门,让初学者对Hibernate的使用有一个大致的认识.本文例子使用了MySQL数据库.Maven管理工具.Eclipse开发工具,创 ...
- 01.Nodejs入门之Helloworld
说明:本文章可供有一定js基础的朋友参考nodejs入门,本文未讲解nodejs的安装,如有需要的同学可以加QQ3382260752找我,进行交流学习. 1.新建文件夹helloworld demo, ...
- ES 01 - Elasticsearch入门 + 基础概念学习
目录 1 Elasticsearch概述 1.1 Elasticsearch是什么 1.2 Elasticsearch的优点 1.3 Elasticsearch的相关产品 1.4 Elasticsea ...
- MyBatis 学习总结 01 快速入门
本文测试源码下载地址: http://onl5wa4sd.bkt.clouddn.com/MyBatis0918.rar 一.Mybatis介绍 MyBatis是一个支持普通SQL查询,存储过程和高级 ...
随机推荐
- SSD_mobilenet
mobilenet_ssd caffe模型可视化地址:MobileNet_ssd conv13是mobilenet的最后一个卷积层,作者仿照VGG-SSD的结构,在MobileNet的conv13后面 ...
- 前端JS编码规范
对初学者来说应该学习的JavaScript编码规范: 传送门: http://blog.chinaunix.net/xmlrpc.php?r=blog/article&uid=29292475 ...
- sqlserver备份和恢复-5
视图备份和恢复 备份 1. 2. 恢复 1. 2. 3.勾选覆盖现有数据库. 4. bat备份恢复 原文: https://www.cnblogs.com/lonelyxmas/p/7958649.h ...
- E:\Postgresql\pgAdmin4_binaryPath
e Path to the directory containing the EDB Advanced Server utility programs (pg_dump, pg_restore etc ...
- 由react循环总结的小知识
const listItems = numbers.map((numbers,index)=><li key={index}>{numbers}</li>) cons ...
- day37—javascript对表格table的操作应用(二)
转行学开发,代码100天——2018-04-22 昨天学习了JavaScript对table的基本操作,包括表格的创建,表格元素的获取,隔行换色及鼠标动作等.今天主要学习table的搜索查询及排序操作 ...
- MYSQL数据库中的查询语句
查询的方法 *简单查询:select * from 表名 (* = 所有的) *读取特定列:select 字段一,字段二 from 表名 *条件查询:select * from 表名 where (多 ...
- openstack——glance镜像服务
一.glance介绍: Glance是Openstack项目中负责镜像管理的模块,其功能包括虚拟机镜像的查找.注册和检索等. Glance提供Restful API可以查 ...
- upc 组队赛18 STRENGTH【贪心模拟】
STRENGTH 题目链接 题目描述 Strength gives you the confidence within yourself to overcome any fears, challeng ...
- springboot异步任务、定时任务
打开浏览器 http://localhost:8080/hello ,连续刷新可以看到不会 等待 3秒时间了,pom.xml controller service 代码如下. -----------S ...