请考察下面的代码:
Long.parseLong("0",10)// returns 0LLong.parseLong("473",10)// returns 473LLong.parseLong("-0",10)// returns 0LLong.parseLong("-FF",16)// returns -255LLong.parseLong("1100110",2)// returns 102LLong.parseLong("99",8)// throws a NumberFormatExceptionLong.parseLong("Hazelnut",10)// throws a NumberFormatExceptionLong.parseLong("Hazelnut",36)// returns 1356099454469L
上面的代码是转换为 Long 的。
转换为 Float 也是一样的。
实际上,我们可能会用到下面的代码来转换。
NumberUtils.toLong("473");
NumberUtils 这个工具类是在
package org.apache.commons.lang3.math
包中的,同时主要也是为了避免出现 null 对象的转换异常。
根据官方的说法为:如果输入的字符串为 null 或者 0 的话,将会有下面的返回和输出。
NumberUtils.toLong(null) =0LNumberUtils.toLong("") =0LNumberUtils.toLong("1") =1L
网友评论