Open Source, Open Future!
menu
106 文章
ღゝ◡╹)ノ❤️
首页
分类
标签墙
存档
友链
RSS
Search
开始使用
BiConsumer
源码 @FunctionalInterface public interface BiConsumer<T, U> { /** * Performs
·
备忘
临时
RocketMQ--单机
配置 准备一台服务器:192.168.1.201,修改hosts文件(vim /etc/hosts),加入映射关系: 192.168.1.201 rocket
·
MQ
设计模式
简介 分类 创建型模式 工厂方法模式 抽象工厂模式 建造者模式 单例模式 原型模式 结构型模式 代理模式 适配器模式模式 桥接模式 组合模式 装饰者模式 外
·
设计模式
目录
Proxy
源码 点击查看 /* * Copyright (c) 1999, 2013, Oracle and/or its affiliates. All rights
·
备忘
临时
WeakCache
源码 Summary /* * Copyright (c) 2013, Oracle and/or its affiliates. All rights res
·
备忘
临时
BiFunction
源码 点击查看 @FunctionalInterface public interface BiFunction<T, U, R> { /** *
·
备忘
临时
Function
源码 点击查看 @FunctionalInterface public interface Function<T, R> { /** * Appli
·
备忘
临时
Consumer
源码 @FunctionalInterface public interface Consumer<T> { /** * Performs this
·
备忘
临时
Supplier
源码 @FunctionalInterface public interface Supplier<T> { /** * Gets a result.
·
备忘
临时
代理模式
简介 为另一个对象提供代理,以便控制客户端对对象的访问。 使用场景 远程代理: 与远程对象交互; 虚拟代理:控制访问创建开销大的对象(先返回一个假引用); 保护
·
设计模式
1
2
3
4
5
6
7
8
9
10
11