Skip to content

Latest commit

 

History

History
31 lines (19 loc) · 744 Bytes

1. Wrapper Class.md

File metadata and controls

31 lines (19 loc) · 744 Bytes

1. Wrapper Class

1.

Java是非纯面向对象编程语言,基本数据类型非面向对象,所以需要将基本数据类型转化为对象。

包装类位于java.lang包

2.

package com.alexanderli95.wrappedClass;

public class test01 {
    public static void main(String[] args){
        Integer i=new Integer(1000);

        System.out.println(i.MAX_VALUE);   //获取范围内最大的数

        System.out.println(Integer.toHexString(i)); //转换为16进制的数字

        Integer i2=Integer.parseInt("234");   //字符串转数字
        //或
        Integer i3=new Integer("1234");

        System.out.println(i.intValue());   //将对象转为int型数字
    }
}