java学习(86):Interage方法compareto,parseint,intvalue
生活随笔
收集整理的這篇文章主要介紹了
java学习(86):Interage方法compareto,parseint,intvalue
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
public class test22 {public static void main(String[] args){int num=5;Integer obj1=new Integer(num);System.out.println("obj1的值為"+obj1);Integer obj2=100;System.out.println("obj2的值為"+obj2);Integer obj3=new Integer("-789");System.out.println("obj3的值為"+obj3);System.out.println(Integer.BYTES);System.out.println(Integer.MAX_VALUE);System.out.println(Integer.MIN_VALUE);System.out.println(Integer.SIZE);//比較大小System.out.println(obj2.compareTo(100));System.out.println(obj2.compareTo(102));System.out.println(obj2.compareTo(10));//返回值類型int num1=obj2.intValue();System.out.println(num1);//將一個字符串轉換為int數據返回int str1=Integer.parseInt("125");System.out.println(str1+12);
}
}
運行結果
創作挑戰賽新人創作獎勵來咯,堅持創作打卡瓜分現金大獎總結
以上是生活随笔為你收集整理的java学习(86):Interage方法compareto,parseint,intvalue的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 【网络编程】Socket网络编程基础
- 下一篇: 继承的概念和实现 、 super关键字