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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© Over_Mstuang 中级黑马   /  2015-8-14 01:31  /  185 人查看  /  0 人回复  /   1 人收藏 转载请遵从CC协议 禁止商业使用本文

public class IntegerDemo {
        public static void main(String[] args) {
                // int -- String
                int num = 100;

                // 方式1
                String s1 = num + "";
                //方式2
                String s2 = String.valueOf(num);
                //方式3
                //int -- Integer -- String
                Integer i = new Integer(num);
                String s3 = i.toString();
                //方式4
                //public static String toString(int i)
                String s4 = Integer.toString(num);
               
               
                //String -- int
                String s = "100";
                //方式1
                //String -- Integer -- int
                //public int intValue()
                Integer ii = new Integer(s);
                int number1 = ii.intValue();
               
                //方式2
                //public static int parseInt(String s)
                int number2 = Integer.parseInt(s);
        }
}

0 个回复

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