技术点1

1 如何将字串 String 转换成整数 int?

  1). int i = Integer.parseInt([String]);

  2). int i = Integer.parseInt([String],[int radix]);

  注: 字串转成 Double, Float, Long 的方法大同小异.

2 如何将整数 int 转换成字串 String ?

  1.) String s = String.valueOf(i);

  2.) String s = Integer.toString(i);

  3.) String s = "" + i;

  注: Double, Float, Long 转成字串的方法大同小异.

转自:http://blog.csdn.net/memray/article/details/7312817/

posted @ 2018-01-12 16:14  康总  阅读(76)  评论(0编辑  收藏  举报