码迷,mamicode.com
首页 > 其他好文 > 详细

Integer之常用方法

时间:2018-04-13 13:18:49      阅读:181      评论:0      收藏:0      [点我收藏+]

标签:进制   turn   string   tostring   int   val   exce   mat   valueof   

public static int parseInt(String s, int radix)
throws NumberFormatException
{}

// radix进制 s 换成 10进制数

 

public static Integer valueOf(String s, int radix) throws NumberFormatException {
return Integer.valueOf(parseInt(s,radix));
}

// radix进制 s 换成 radix进制数 再转成integer型

 

 

 public static String toString(int i, int radix) {}

// 10进制数 i 换成 radix进制数

Integer之常用方法

标签:进制   turn   string   tostring   int   val   exce   mat   valueof   

原文地址:https://www.cnblogs.com/guoziyi/p/8819417.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!