05 2021 档案

摘要:List接口 三大特点:1.有序的collection,2.有索引,3.允许存储重复元素 有序:存储与取出元素顺序是一致的 List接口中常用的方法 public void add (int index,E element) 将指定元素,添加到该集合中指定位置上 public E get(int i 阅读全文
posted @ 2021-05-13 14:58 August_w 阅读(50) 评论(0) 推荐(0)
摘要:文本格式化标签 粗体,斜体,下划线 加粗 <strong> </strong> <b> </b> 倾斜 <em> </em> <i> </i> 删除线 <del> </del> <s> </s> 下划线 <ins> </ins> <u> </u> 盒子标签 <div> 独占一行 大盒子 <span> 阅读全文
posted @ 2021-05-07 19:04 August_w 阅读(109) 评论(0) 推荐(0)