博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Long基本类型的三个静态方法(java)
阅读量:5780 次
发布时间:2019-06-18

本文共 3016 字,大约阅读时间需要 10 分钟。

hot3.png

 今天写代码是需要将时间戳转换为我们能看懂的时间格式,比如“年-月-日 时:分:秒”格式,需要将字符串类型的时间戳字符串转换为Long类型的数据。

   在查看Long类型时,myeclipse提示了我觉得语义上可以满足以上需求的静态方法,如下三个

      Long.valueOf(String s); 

       Long.parseLong(String s);

       Long.getLong(String s); 

    因为字符串转换为int类型时,我们都用integer.parseInt(String s),而Long.getLong(String s)又是干什么的呢?因此我找到java.lang.Long文件,从源代码中看个究竟

    Long.parseLong(String s)方法:

    public static long parseLong(String s, int radix)

              throws NumberFormatException

    {

        if (s == null) {

            throw new NumberFormatException("null");

        }

        if (radix < Character.MIN_RADIX) {

            throw new NumberFormatException("radix " + radix +

                                            " less than Character.MIN_RADIX");

        }

        if (radix > Character.MAX_RADIX) {

            throw new NumberFormatException("radix " + radix +

                                            " greater than Character.MAX_RADIX");

        }

        long result = 0;

        boolean negative = false;

        int i = 0, len = s.length();

        long limit = -Long.MAX_VALUE;

        long multmin;

        int digit;

        if (len > 0) {

            char firstChar = s.charAt(0);

            if (firstChar < '0') { // Possible leading "+" or "-"

                if (firstChar == '-') {

                    negative = true;

                    limit = Long.MIN_VALUE;

                } else if (firstChar != '+')

                    throw NumberFormatException.forInputString(s);

                if (len == 1) // Cannot have lone "+" or "-"

                    throw NumberFormatException.forInputString(s);

                i++;

            }

            multmin = limit / radix;

            while (i < len) {

                // Accumulating negatively avoids surprises near MAX_VALUE

                digit = Character.digit(s.charAt(i++),radix);

                if (digit < 0) {

                    throw NumberFormatException.forInputString(s);

                }

                if (result < multmin) {

                    throw NumberFormatException.forInputString(s);

                }

                result *= radix;

                if (result < limit + digit) {

                    throw NumberFormatException.forInputString(s);

                }

                result -= digit;

            }

        } else {

            throw NumberFormatException.forInputString(s);

        }

        return negative ? result : -result;

    }

    一个参数的Long.parseLong(String s):

    public static long parseLong(String s) throws NumberFormatException {

        return parseLong(s, 10);

    }

从这两个重载方法可以看出,一个参数的Long.parseLong(String s)方法只是将radix默认为10进制然后调用public static long parseLong(String s, int radix)方法

暂且不管这个,我们看一下Long.valueOf(String s)

 public static Long valueOf(String s) throws NumberFormatException

    {

        return Long.valueOf(parseLong(s, 10));

    }

我们会发现他调用了 Long.valueOf(Long l)的重载方法,参数为long类型,返回值仍为long类型。在实质转换上仍然是调用的是parseLong(String s, int radix)方法

我们再看getLong(String nm)方法:

public static Long getLong(String nm) {

        return getLong(nm, null);

    }

上面的方法实际调用的是一下方法

public static Long getLong(String nm, Long val) {

        String v = null;

        try {

            v = System.getProperty(nm);

        } catch (IllegalArgumentException e) {

        } catch (NullPointerException e) {

        }

        if (v != null) {

            try {

                return Long.decode(v);

            } catch (NumberFormatException e) {

            }

        }

        return val;

    }

由于前面调用的时val ==null,我测试了一下System.getProperty(nm)返回的是null,因此如果我们调用getLong(String nm)方法,返回的仍然是null,因此getLong(String nm)方法不能把字符串转换成为long类型。

至于

 public static Long getLong(String nm, long val) {

        Long result = Long.getLong(nm, null);

        return (result == null) ? Long.valueOf(val) : result;

    }

我们必须添加参数val 因此没有实际意义

经过对源代码的查看,我们很自然的会选择Long.parseLong(String s)方法,而Long.getLong(String s)不能将字符串转换为long类型。

以上仅是我个人的观点,

转载于:https://my.oschina.net/pumpkin0523/blog/194540

你可能感兴趣的文章
iframe刷新问题
查看>>
数据解码互联网行业职位
查看>>
我所见的讲的最容易理解,逻辑最强的五层网络模型,来自大神阮一峰
查看>>
vue-cli项目打包需要修改的路径问题
查看>>
js实现复选框的操作-------Day41
查看>>
数据结构化与保存
查看>>
[SpringBoot] - 配置文件的多种形式及优先级
查看>>
chrome浏览器开发者工具之同步修改至本地
查看>>
debian7 + wheezy + chromium + flashplayer
查看>>
AOP
查看>>
进阶开发——文档,缓存,ip限速
查看>>
vue中子组件需调用父组件通过异步获取的数据
查看>>
uva 11468 - Substring(AC自己主动机+概率)
查看>>
Mysql 数据备份与恢复,用户创建,授权
查看>>
沉思录
查看>>
Angular.js中的$injector服务
查看>>
构建之法读书笔记01
查看>>
linux - lsof 命令最佳实践
查看>>
kafka性能测试
查看>>
现实世界的Windows Azure:h.e.t软件使用Windows Azure削减50%的成本
查看>>