基本数据类型 vs包装类 byte Byte short Short char Character int Integer long Long float Float double Double boolean Boolean 1.Integer构造方法 java.lang.Integer 1>public Integer(int value) 构造一个新分配的 Integer 对象,它表示指定的 int 值. 2>public Integer(String s) throws Numbe…
// // main.m // 10-基本数据类型的包装类 // // Created by apple on 14-3-20. // Copyright (c) 2014年 apple. All rights reserved. // #import <Foundation/Foundation.h> int main(int argc, const char * argv[]) { //集合中,不能存储基本数据类型,如果你想要把基本数据类型存储到数组,集合中,就必须把它转换成基本数…
基本数据类型对象包装类 byte Byte short Short int Integer long Long boolean Boolean float Float double Double char Character 基本数据类型对象包装类的最常见作用,就是用于基本数据类型和字符串之间坐转换. 基本数据类型转成字符串 基本数据类型+"" 基本数据类型.toString(基本数据类型值); 如:Integer.toString(34);//将34整数变成"34"…