我是靠谱客的博主 腼腆流沙,最近开发中收集的这篇文章主要介绍Integer类的使用方法,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

Interger:整数类型 

1、属性。 

static int MAX_VALUE:返回最大的整型数; 
static int MIN_VALUE:返回最小的整型数; 
static Class TYPE :返回当前类型。 

例子: 
System.out.println("Integer.MAX_VALUE: " + Integer.MAX_VALUE ); 
结果为:Integer.MAX_VALUE: 2147483647 


2、构造函数。 

Integer(int value) :通过一个int的类型构造对象; 
Integer(String s) :通过一个String的类型构造对象; 

例子: 
Integer i = new Integer("1234"); 
生成了一个值为1234的Integer对象。 


3、方法。 
说明: 
1. 所有方法均为public; 
2. 书写格式:[修饰符] <返回类型> <方法名([参数列表])> 
如: 
static int parseInt(String s) 表示:此方法(parseInt)为类方法(static),返回类型为(int),方法所需参数为String类型。 

1. byteValue():取得用byte类型表示的整数; 
2. int compareTo(Integer anotherInteger) :比较两个整数。相等时返回0;小于时返回负数;大于时返回正数。 

例子: 

Integer i = new Integer(1234); 
System.out.println("i.compareTo: " + i.compareTo(new Integer(123)) ); 
结果为:i.compareTo: 1 


3. int compareTo(Object o) :将该整数与其他类进行比较。如果o也为Integer类,进行方法2 的操作;否则,抛出ClassCastException异常。 
4. static Integer decode(String nm) :将字符串转换为整数。 
5. double doubleValue() :取得该整数的双精度表示。 
6. boolean equals(Object obj) :比较两个对象。 
7. float floatValue() :取得该整数的浮点数表示。 
8. static Integer getInteger(String nm) :根据指定名确定系统特征值。 
9. static Integer getInteger(String nm, int val) :上面的重载。 
10. static Integer getInteger(String nm, Integer val) :上面的重载。 
11. int hashCode() :返回该整数类型的哈希表码。 
12. int intValue() : 返回该整型数所表示的整数。 
13. long longValue() :返回该整型数所表示的长整数。 
14. static int parseInt(String s) :将字符串转换成整数。s必须是时进制数组成,否则抛出NumberFormatException异常。 
15. static int parseInt(String s, int radix) :以radix为基数radix返回s的十进制数。所谓的基数,就是“几进制”。 

例子: 

String s1 = new String("1010"); 
System.out.println("Integer.parseInt(String s, int radix): " + Integer.parseInt(s1,2) ); 
结果为:Integer.parseInt(String s, int radix): 10 


16. short shortValue() :返回该整型数所表示的短整数。 
17. static String toBinaryString(int i) :将整数转为二进制数的字符串。 
18. static String toHexString(int i) :将整数转为十六进制数的字符串。 
19. static String toOctalString(int i) :将整数转为八进制数的字符串。 
20. String toString() :将该整数类型转换为字符串。 
21. static String toString(int i) :将该整数类型转换为字符串。不同的是,此为类方法。 
22. static String toString(int i, int radix) :将整数i以基数radix的形式转换成字符串。 

例子: 
int i1 = 54321; 
System.out.println("Integer.toString(int i, int radix): " + Integer.toString(i1,16) ); 
结果为:Integer.toString(int i, int radix): d431 


23. static Integer valueOf(String s) :将字符串转换成整数类型。 
24. static Integer valueOf(String s, int radix) :将字符串以基数radix的要求转换成整数类型。 

最后

以上就是腼腆流沙为你收集整理的Integer类的使用方法的全部内容,希望文章能够帮你解决Integer类的使用方法所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(34)

评论列表共有 0 条评论

立即
投稿
返回
顶部