Java基本数据类型的转换

作者: 晚安多巴胺 | 来源:发表于2019-04-03 10:20 被阅读2次

    Integer → int

    Integer i = 6;
    int r = i.intvalue();
    

    int → Integer

    int r = 6;
    Integer i = new Integer(r);
    

    String→ Integer

    String str = "6";
    Integer i = Integer.valueOf(str);
    

    Integer → String

    Integer i = 6;
    String str =i.toString();
    

    String→ int

    String str = "6";
    Integer i = Integer.valueOf(str);
    int r = i.intValue();
    

    int→ String

    int i = 6;
    String str =Integer.toString(i);
    String str =String.valueOf(i);
    // 我用的最多的
    String str =i +"";
    

    相关文章

      网友评论

        本文标题:Java基本数据类型的转换

        本文链接:https://www.haomeiwen.com/subject/rlcabqtx.html