摘要: 集合(十七) Collection List List是有序并且可以重复的集合,List常用的有ArrayList和LinkedList ArrayList ArrayList常用的方法: add() 添加元素 remove() 删除元素 contains() 是否包含某个元素 get() 获取元素 阅读全文
posted @ 2021-02-18 18:16 LucaZ 阅读(22) 评论(0) 推荐(0) 编辑
摘要: 包装类型(十六) 我们已经知道,Java的数据类型分为两种,基本类型和引用类型 基本类型有:byte short int long float double char boolean 引用类型有:类和接口 引用类型可以赋值为null,但基本类型不能赋值为null String s = null; i 阅读全文
posted @ 2021-02-18 17:22 LucaZ 阅读(32) 评论(0) 推荐(0) 编辑
摘要: Java常用类(十五) String package com.importc; public class stringDemo01 { public static void main(String[] args) { String s1 = "Hello"; String s2 = "HELLO"; 阅读全文
posted @ 2021-02-18 17:21 LucaZ 阅读(28) 评论(0) 推荐(0) 编辑