冰枫逸范
Victory won’t come to me unless I go to it. 胜利是不会向我走来的,我必须自己走向胜利。
1.如何将字符串转换为int类型

⑴ int i = Integer.parseInt(String);

         ⑵ int i = Integer.valueOf(String);

         注:字符串转换为Double, Float, Long类型用法类似

2.如何将int类型转换为字符串

      ⑴   String  s = String.valueOf(int);

      ⑵   String  s = Integer.toString(int);

      ⑶   String s = " " + int;

        注:Double, Float, Long转换为字符串类型用法类似

posted on 2008-03-24 11:49 冰枫逸范 阅读(165) 评论(0)  编辑  收藏 所属分类: J2SE学习历程

只有注册用户登录后才能发表评论。


网站导航: