获得整数值

这个问题在这里已经有了答案:

  • 如何在Java中将字符串转换为int? 30个答案

  • 您可以使用Integer.valueOf()或Integer.parseInt(); 除非你的问题更像是这样 -

    public static void main(String[] args) {
      String str = "1";
      int a = Integer.valueOf(str);                 // java.lang.Integer return(ed)
      int b = Integer.parseInt(str);                // primitive (int) return(ed)
      System.out.printf("a = %d, b = %dn", a, b);
    }
    

    在我的机器上运行这个

    a = 1, b = 1
    
    链接地址: http://www.djcxy.com/p/20911.html

    上一篇: Get Value to Integer

    下一篇: Java String to Integer Conversion