摘要: output: 阅读全文
posted @ 2019-07-25 17:10 嵌入式实操 阅读(77) 评论(0) 推荐(0) 编辑
摘要: 使用BiDecimal类是了为防止运算时精度丢失: output: 阅读全文
posted @ 2019-07-25 17:03 嵌入式实操 阅读(152) 评论(0) 推荐(0) 编辑
摘要: output: 阅读全文
posted @ 2019-07-25 16:42 嵌入式实操 阅读(150) 评论(0) 推荐(0) 编辑
摘要: output: //取整,返回小于目标数的最大整数System.out.println(Math.floor(-1.2));// 取整,返回在于目标数的最大整数System.out.println(Math.ceil(1.2));// 四舍五入取整System.out.println(Math.round(1.6));System.out.println(Math.round(1.5));Sys... 阅读全文
posted @ 2019-07-25 16:31 嵌入式实操 阅读(162) 评论(0) 推荐(0) 编辑
摘要: output: 阅读全文
posted @ 2019-07-25 16:09 嵌入式实操 阅读(101) 评论(0) 推荐(0) 编辑
摘要: output: 阅读全文
posted @ 2019-07-25 16:03 嵌入式实操 阅读(144) 评论(0) 推荐(0) 编辑
摘要: output: 阅读全文
posted @ 2019-07-25 15:28 嵌入式实操 阅读(2593) 评论(0) 推荐(0) 编辑
摘要: output: 阅读全文
posted @ 2019-07-25 15:21 嵌入式实操 阅读(96) 评论(0) 推荐(0) 编辑
摘要: output: 阅读全文
posted @ 2019-07-25 15:09 嵌入式实操 阅读(1124) 评论(0) 推荐(0) 编辑
摘要: var rt = Runtime.getRuntime(); // 类c语言当中的system()函数。 rt.exec("notepad.exe"); 阅读全文
posted @ 2019-07-25 14:54 嵌入式实操 阅读(164) 评论(0) 推荐(0) 编辑
摘要: output: 阅读全文
posted @ 2019-07-25 14:52 嵌入式实操 阅读(515) 评论(0) 推荐(0) 编辑
摘要: output: 阅读全文
posted @ 2019-07-25 14:39 嵌入式实操 阅读(140) 评论(0) 推荐(0) 编辑
摘要: 通过System.getenv( ) 获取环境变量 通过System.getProperties() 获取系统属情 通过System.currentTimeMillis() System.nanoTime() 获取系统时间毫秒及纳秒 阅读全文
posted @ 2019-07-25 14:33 嵌入式实操 阅读(1283) 评论(0) 推荐(0) 编辑
摘要: 通过Scanner类,获取键盘的输入 阅读全文
posted @ 2019-07-25 14:27 嵌入式实操 阅读(125) 评论(0) 推荐(0) 编辑