摘要:
package com.atguigu.test12; import java.math.BigDecimal; import java.math.BigInteger; import org.junit.Test; /* * 数学相关的常用类: * 1、java.lang.Math类 * * 2、 阅读全文
摘要:
package com.atguigu.day0918; import java.time.LocalDate; import java.time.LocalDateTime; import java.time.LocalTime; import java.time.format.DateTimeF 阅读全文
摘要:
package com.atguigu.test11; import java.text.ParseException; import java.text.SimpleDateFormat; import java.util.Calendar; import java.util.Date; impo 阅读全文
摘要:
package com.atguigu.test10; /* * Runtime:JVM运行时环境 * Runtime是一个单例的实现 */ public class TestTime { public static void main(String[] args) { // testStringB 阅读全文
摘要:
package com.atguigu.test10; import org.junit.Test; /* * 字符串的兄弟类: * * String:不可变对象。一旦修改就会有新对象。 * 引入:可变字符序列,StringBuffer和StringBuilder * * StringBuilder 阅读全文
摘要:
package com.atguigu.test09; import org.junit.Test; /* * 方法系列(4): * (1)boolean startsWith(xx) * (2)boolean endsWith(xx) */ public class TestStringMetho 阅读全文