暑期熔炉7月6

方北路 五十块买来新气象~ 远方却还是雾茫茫~

笔记

java 字符串与int类型的转化

1.String 转化为 int

String 字符串转整型 int 有以下两种方式:

Integer.parseInt(str)

Integer.valueOf(str).intValue()

public static void main(String[] args) {
    String str = "123";
    int n = 0;

    // 第一种转换方法:Integer.parseInt(str)
    n = Integer.parseInt(str);
    System.out.println("Integer.parseInt(str) : " + n);

    // 第二种转换方法:Integer.valueOf(str).intValue()
    n = 0;
    n = Integer.valueOf(str).intValue();
    System.out.println("Integer.parseInt(str) : " + n);
}
2.int 转化为String
整型 int 转 String 字符串类型有以下 3 种方法:

String s = String.valueOf(i);

String s = Integer.toString(i);

String s = "" + i;

public static void main(String[] args) {
    int num = 10;

    // 第一种方法:String.valueOf(i);
    num = 10;
    String str = String.valueOf(num);
    System.out.println("str:" + str);

    // 第二种方法:Integer.toString(i);
    num = 10;
    String str2 = Integer.toString(num);
    System.out.println("str2:" + str2);

    // 第三种方法:"" + i;
    String str3 = num + "";
    System.out.println("str3:" + str3);
}
 
posted @ 2023-07-06 21:00  混沌武士丞  阅读(8)  评论(0编辑  收藏  举报