"ヾ(◍°∇°◍)ノ゙加油哟~","愿我们不负昭华,以梦为马!","愿我们历尽千帆,归来仍是少年!"
摘要: 1、BigInteger Modifier and TypeMethod and Description BigInteger abs() 返回一个BigInteger,它的值是此BigInteger的绝对值。 BigInteger add(BigInteger val) 返回值为 (this + 阅读全文
posted @ 2021-08-17 15:24 深夜独行侠 阅读(178) 评论(0) 推荐(0) 编辑
摘要: public class Test { public static void main(String[] args) { String javaVersion = System.getProperty("java.version");//Java运行环境版本 String javaVendor = 阅读全文
posted @ 2021-08-17 11:33 深夜独行侠 阅读(74) 评论(0) 推荐(0) 编辑
摘要: %% 在字符串中显示% %d 以10 进位整数方式输出,提供的数必须是Byte、 Short、 Integer、Long、或BigInteger %f 将浮点数以10进位方式输出,提供的数必须是Float、 Double或 BigDecimal %e, %E 将浮点数以10进位方式输出,并使用科学记 阅读全文
posted @ 2021-08-17 10:28 深夜独行侠 阅读(203) 评论(0) 推荐(0) 编辑
摘要: Modifier and TypeMethod and Description static void arraycopy(Object src, int srcPos, Object dest, int destPos, int length) 将指定源数组中的数组从指定位置复制到目标数组的指定位 阅读全文
posted @ 2021-08-17 10:05 深夜独行侠 阅读(77) 评论(0) 推荐(0) 编辑
摘要: import java.io.Console; public class Test { public static void main(String[] args) { Console cs = System.console(); String userName = cs.readLine("Use 阅读全文
posted @ 2021-08-17 09:36 深夜独行侠 阅读(74) 评论(0) 推荐(0) 编辑