摘要:
IntegerTest05.java 主要看装箱和拆箱的问题 package com.bjpowernode.javase1.integer1; public class IntegerTest05 { public static void main(String[] args) { //自动装箱 阅读全文
摘要:
package com.bjpowernode.javase1.integer1; public class IntegerTest05 { public static void main(String[] args) { //自动装箱 //基本数据类型 --> 包装类 //100为基本数据类型,q 阅读全文
摘要:
这个包装类有最大值和最小值的方法 通过帮助文档查询一下 package com.bjpowernode.javase1.integer1; public class IntegerTest04 { public static void main(String[] args) { /*通过常量获取最大 阅读全文