涨见识!Java String转int还有这种写法
发布日期:2021-04-30 21:10:49
浏览次数:96
分类:精选文章
本文共 2084 字,大约阅读时间需要 6 分钟。
? Java ??String ? int ?????????????????????????????????????????????????123???????????+??????????????????????????
String a = "100";String b = "50";String c = a + b; // ????? "10050"
??????+???????????????+??????????????????????????????????????
Integer.valueOf()?
String a = "100";String b = "50";int A = Integer.valueOf(a);int B = Integer.valueOf(b);int c = A + B; // ????? 150
Integer.parseInt()?
String a = "100";String b = "50";int A = Integer.parseInt(a);int B = Integer.parseInt(b);int c = A + B; // ????? 150
???Integer.parseInt() ???????????
?????????????????????????????????????
public class String2IntDemo { public static void main(String[] args) { String a = "100"; String b = "50"; int A = string2int(a); int B = string2int(b); int c = A + B; System.out.println(c); } public static int string2int(String s) { int num = 0; int pos = 1; for (int i = s.length() - 1; i >= 0; i--) { num += (s.charAt(i) - '0') * pos; pos *= 10; } return num; }} ???????????????????????????????????????
????
?????????? ???????-??????????????
???????????? ??? NumberFormatException?
??????? ????? 2???? 36?
??
Integer.parseInt() ??????????? Character.digit() ?????????????????
????
public class S2IDemo { public static void main(String[] args) { String a = "-100"; String b = "50"; int A = string2int(a); int B = string2int(b); int c = A + B; System.out.println(c); } public static int string2int(String s) { boolean negative = false; char firstChar = s.charAt(0); if (firstChar == '-') { negative = true; s = s.substring(1); } int num = 0; int pos = 1; for (int i = s.length() - 1; i >= 0; i--) { num += (s.charAt(i) - '0') * pos; pos *= 10; } return negative ? -num : num; }} ??
????? string2int() ????????????? Integer.parseInt() ????????????????????????????????????????
发表评论
最新留言
不错!
[***.144.177.141]2026年06月22日 12时27分14秒
关于作者
喝酒易醉,品茶养心,人生如梦,品茶悟道,何以解忧?唯有杜康!
-- 愿君每日到此一游!
推荐文章
PIL.Image、cv2的img、bytes相互转换
2023-03-02
PIL.Image进行图像融合显示(Image.blend)
2023-03-02
pilicat-dfs 霹雳猫-分布式文件系统
2023-03-02
Pillow lacks the JPEG 2000 plugin
2023-03-02
SpringBoot之ElasticsearchRestTemplate常用示例
2023-03-02
ping 全网段CMD命令
2023-03-02
ping 命令的七种用法,看完瞬间成大神
2023-03-02
Pinia入门(快速上手)
2023-03-02
Pinia:$patch的使用场景
2023-03-02
Pinia:$subscribe()的使用场景
2023-03-02
Pinpoint对Kubernetes关键业务模块进行全链路监控
2023-03-02
Pinterest 大规模缓存集群的架构剖析
2023-03-02
PinYin4j库的使用
2023-03-02
PIP
2023-03-02
pip install mysqlclient报错
2023-03-02
pip install 出现报asciii码错误的解决
2023-03-02
pip throws TypeError: parse() got an unexpected keyword argument ‘transport_encoding‘ 在尝试安装新软件包时
2023-03-02
pip 下载慢
2023-03-02