摘要: 基本数据类型 参考官网 byte: 8-bit short: 16-bit int: 32-bit long: 64-bit float: 32-bit double: 64-bit boolean: 只有两个可能的值 true 和 false;这种数据类型表示一位信息,但它的“大小”并不是精确定义 阅读全文
posted @ 2021-09-24 13:23 1766Af 阅读(34) 评论(0) 推荐(0) 编辑
摘要: App public class GCApp { // 1 MB = 1024 KB, 1 KB = 1024 B(字节), 1 B=8 b(bit比特) public static final int MB = 1024 * 1024; public static void main(String 阅读全文
posted @ 2021-09-24 13:20 1766Af 阅读(95) 评论(0) 推荐(0) 编辑
摘要: 架构图 各种用途参考:https://docs.oracle.com/javase/8/docs/technotes/guides/collections/reference.html 常用 Algorithms - The Collections class contains these usef 阅读全文
posted @ 2021-09-24 13:11 1766Af 阅读(80) 评论(0) 推荐(0) 编辑
摘要: 测试代码 public class App { public static void main(String[] args) { System.out.println("123"); Map<Object, Object> hashMap = new HashMap<>(4); for (int i 阅读全文
posted @ 2021-09-24 13:02 1766Af 阅读(26) 评论(0) 推荐(0) 编辑
摘要: 类关系图 AopProxyFactory public interface AopProxyFactory { /** * Create an {@link AopProxy} for the given AOP configuration. * @param config the AOP conf 阅读全文
posted @ 2021-09-24 12:58 1766Af 阅读(28) 评论(0) 推荐(0) 编辑
摘要: 整理流程图 Cglib 生成对象 BeanUtils#instantiateClass{ return ctor.newInstance(argsWithDefaultValues) } 由上图可知,最终会调用 AppConfig 的构造方法来生成对象 阅读全文
posted @ 2021-09-24 12:55 1766Af 阅读(41) 评论(0) 推荐(0) 编辑