摘要: 创建字符串最简单的方式如下: String str = "Runoob"; 在代码中遇到字符串常量时,这里的值是 "Runoob",编译器会使用该值创建一个 String 对象。 和其它对象一样,可以使用关键字和构造方法来创建 String 对象。 用构造函数创建字符串: 其中一个构造方法 publ 阅读全文
posted @ 2021-11-21 21:27 软工小蜗牛 阅读(58) 评论(0) 推荐(0) 编辑
摘要: 所有的包装类(Integer、Long、Byte、Double、Float、Short)都是抽象类 Number 的子类 public class Test{ public static void main(String[] args){ Integer x = 5; x = x + 10; Sys 阅读全文
posted @ 2021-11-21 21:25 软工小蜗牛 阅读(68) 评论(0) 推荐(0) 编辑
摘要: 代码实例 public class Main { public static void main(String[] args) { double[] nums = { 1.4, 1.5, 1.6, -1.4, -1.5, -1.6 }; for (double num : nums) { test( 阅读全文
posted @ 2021-11-21 21:25 软工小蜗牛 阅读(85) 评论(0) 推荐(0) 编辑
摘要: Character 类用于对单个字符进行操作。 Character 类在对象中包装一个基本类型 char 的值 char ch = 'a'; // Unicode 字符表示形式 char uniChar = '\u039A'; // 字符数组 char[] charArray ={ 'a', 'b' 阅读全文
posted @ 2021-11-21 21:25 软工小蜗牛 阅读(94) 评论(0) 推荐(0) 编辑