摘要:
Linux控制台输入 $ man open 出现的是openvt的信息,要怎么办? 可以为man命令添加-a选项,按q退出后输入open $ man -a open #该命令的含义是,可以分页显示所有可能的查找目标文档,再进行查询 man -a intro 正确执行时显示手册中包含的所有可用的 in 阅读全文
摘要:
ArrayList底层是数组elementData,用于存放插入的数据。初始大小是0,当有数据插入时,默认大小DEFAULT_CAPACITY = 10。 /** * The array buffer into which the elements of the ArrayList are stor 阅读全文