/*
* java中的种基本数据类型
*
* 基本类型 包装类
* byte Byte
* short Short
* int Integer
* long Long
*
* float Float
* double Double
*
* char Character
*
* boolean Boolean
*
* ----------------------------------
*
* Integer类概述
Integer 类在对象中包装了一个基本类型 int 的值
该类提供了多个方法,能在 int 类型和 String 类型之间互相转换,还提供了处理 int 类型时非常有用的其他一些常量和方法
字段:
public static final int MAX_VALUE 最大值
public static final int MIN_VALUE 最小值
*/
public class IntegerDemo {
public static void main(String[] args) {
//10十进制 转换到 其他进制
String s1 = Integer.toBinaryString(12);//1100
System.out.println(s1);
System.out.println( Integer.MAX_VALUE );
System.out.println( Integer.MIN_VALUE );
}
}
|
|