摘要: BigInteger类实现了任意精度的整数运算,BigDecimal类实现了任意精度的浮点数运算 使用静态类valueOf方法可以将普通的数值转换为大数值: 示例代码 阅读全文
posted @ 2020-03-23 23:31 xl4ng 阅读(207) 评论(0) 推荐(0) 编辑
摘要: ``` package com.company.Util; public class Times { public interface Block{ void execute(); } public static void test(Block block) { long begin =System.currentTimeMillis(); block.execute(); long end = 阅读全文
posted @ 2020-03-23 22:50 xl4ng 阅读(217) 评论(0) 推荐(0) 编辑
摘要: ``` using System; using System.Collections.Generic; using System.Collections.Specialized; using System.Reflection; using System.ComponentModel; namespace EnumApp { class Program { static void Main(str 阅读全文
posted @ 2020-03-23 16:13 xl4ng 阅读(2379) 评论(0) 推荐(0) 编辑