随笔分类 - 01. Java
摘要:基本数据类型 参考官网 byte: 8-bit short: 16-bit int: 32-bit long: 64-bit float: 32-bit double: 64-bit boolean: 只有两个可能的值 true 和 false;这种数据类型表示一位信息,但它的“大小”并不是精确定义
阅读全文
摘要:架构图 各种用途参考:https://docs.oracle.com/javase/8/docs/technotes/guides/collections/reference.html 常用 Algorithms - The Collections class contains these usef
阅读全文
摘要:测试代码 public class App { public static void main(String[] args) { System.out.println("123"); Map<Object, Object> hashMap = new HashMap<>(4); for (int i
阅读全文