A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

String 类型 与 int 类型的相互转换:
  int --> String :
    1.和""进行拼接
   (常用) 2.public static String valueOf(int i)
    3.int--> Integer --> String
      Integer i = new Integer(10);
      String s = i.toString();
   (常用) 4.public static String toSring(int i)(Integer类的静态方法)
  
  String --> int:
     1.String --> Integer --> int
     Integer ii = new Integer(String numStr);
     int a = ii.intValue();// public int intValue();
     (****)public int intValue();
  (必须掌握)2.public static int parseInt(String str);
     int a = Integer.parseInt("123");

0 个回复

您需要登录后才可以回帖 登录 | 加入黑马