This commit is contained in:
Looly 2022-05-20 11:40:07 +08:00
parent b5619fefbd
commit 738ebe5a08
2 changed files with 7 additions and 0 deletions

View File

@ -36,6 +36,8 @@ import java.util.Set;
* <li><a href="https://github.com/venusdrogon/feilong-core/wiki/one-jdk7-bug-thinking">one-jdk7-bug-thinking</a></li>
* </ul>
*
* TODO 需整理精简方法去掉无用的重载方法
*
* @author Looly
*/
public class NumberUtil {

View File

@ -448,4 +448,9 @@ public class NumberUtilTest {
Assert.assertNotNull(NumberUtil.toBigInteger(number2));
}
@Test
public void divIntegerTest(){
System.out.println(NumberUtil.div(100101300, (Number) 100));
}
}