首页 > 其他 > 详细

字符串拼接出现null的问题

时间:2020-12-22 23:45:16      阅读:202      评论:0      收藏:0      [点我收藏+]

  最近在开发的过程中遇到这样的问题,原因是在做一个需求的时候,要求将解密的号码和前缀进行拼接。一开始在这个拼接的过程中,没有考虑到数据校验的问题,因为有可能他的前缀或者其他需要拼接的字段在前端传递的过程中,可能是没有传过来。所以在拼接的时候可能会忽略一个问题,就是字符串拼接了null。

  下面看一下错误的拼接例子:

public class Demo {
    public static void main(String[] args) {

        String testOne = null;
        String testTwo = "test";

        String testThree = testTwo + testOne;
        System.out.println(testThree);

        String testFour = testOne + testTwo;
        System.out.println(testFour);

    }
}

  打印结果如下:

技术分享图片

  很明显,这样的拼接结果是错误的。

  

  正确的例子如下:

public class Demo {
    public static void main(String[] args) {

        String testOne = null;
        String testTwo = "test";

        if(testOne == null){
            testOne = "";
        }
        if(testTwo == null){
            testTwo = "";
        }
        String testThree = testTwo + testOne;
        System.out.println(testThree);

    }
}

  在拼接字段,对需要拼接的字段先进行校验,如果是null的话,给它赋值成空串。

  打印结果如下:

技术分享图片

  这样拼接的结果就不容易出错啦!

 

字符串拼接出现null的问题

原文:https://www.cnblogs.com/lu97/p/14175931.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!