深入理解Java之装箱与拆箱

一、Java数据类型
1、在说装箱与拆箱之前,先说一下Java的基本数据类型,Java从数据类型上可以划分为值类型与引用类型,值类型是四类八种,分别是:

整数型:byte̵,short̵,int̵,long
浮点型:float,double
字符型:char
布尔型:boolean
数据类型 内存 默认值 包装类
byte 8位 0 Byte
short 16位 0 short
int 32位 0 Integer
long 64位 0L或0l Long
float 32位 0.0F或0.0f Float
double 64位 0.0D或0.0d Double
char 16位 \u0000 Character
boolean 8位 flase Boolean
2、引用类型:

数组
类(class)
接口(Interface)
枚举(enum)

3、值类型与引用类型的区别

从概念方面上来说:
值类型:变量名指向具体的值
引用类型:变量名指向数据对象的内存地址
从内存构建方面上来说:
值类型:变量在声明之后,Java就会立刻分配给它内存空间
引用类型:它以特殊的方式(类似C指针)指向对象实体,这类变量声明时不会分配内存,只是存储
从使用方面上来说:
值类型:使用时需要赋具体值,判断时用 ” == “号
引用类型:使用时可以赋null,判断时使用 equals 方法
二、Java数据类型转换
1、自动转换

定义:程序在执行过程中“悄然”进行的转换,不需要用户提前声明,一般是从位数低的类型向位数高的类型转换

优先关系:按从低到高的顺序转换。不同类型数据间的优先

关系如下:

低--------------------------------------------->高
byte,short,char-> int -> long -> float -> double
转换规则:

运算中,不同类型的数据先转化为同一类型,然后进行运算

操作数1类型 操作数2类型 转换后的类型
byte、short、char int int
byte、short、char、int long long
byte、short、char、int、long float float
byte、short、char、int、long、float double double
2、强制转换

定义:强制类型转换则必须在代码中声明,转换顺序不受限制

格式:在需要转型的数据前加上“( )”,然后在括号内加入需要转化的数据类型

结果:精度可能会丢失,也可能更加精确

int x;
double y;

x = (int)3.14 + (int)5.20 //精度丢失
y = (double)x + (double)8 //精度提升

输出:x = 8;y = 16.0
三、Java之装箱与拆箱
1、包装类

Java是面向对象语言,号称万事万物皆对象,因此,8种基本数据类型有了对应的类,这就是包装类
2、什么是装箱与拆箱

装箱:将值类型装换成引用类型的过程

拆箱:将引用类型转换成值类型的过程

自动装箱:

int x = 3;
Integer y = x; //int --> Integer,Integer y = x <==> Integer y = Integer.valueOf(x)
自动拆箱:

Integer x = new Integer(5);
int y = x; //Integer --> int,int y = x <==> int y = x.intValue()
3、装箱和拆箱是如何实现的

装箱过程是通过调用包装器的valueOf方法实现的
拆箱过程是通过调用包装器的 xxxValue方法实现的。(xxx代表对应的基本数据类型)
4、注意点:

大量使用自动拆装箱会使性能降低,还会造成大量的内存消耗
在重载方法中,可能出现问题
List list = new ArrayList<>();
Integer x,y,z;
x = 1;y = 2;z = 4;
list.add(x);list.add(y);list.add(z);

list.remove(2);

在上面这段代码中ArrayList.remove方法有两个重载方法,那么list.remove(2)是调用了哪个方法,remove掉的是值为2的对象,还是remove了index为2,值为4的那个对象呢?

在这种情况下,编译器不会进行自动拆装箱,所以调用的是remove(int index),index为2值为4的这个Integer对象会被remove.

如果要调用 remove(Object o)的方法,应该这么写 list.remove(y)

缓存值问题
案例解析:

Integer i1 = 100;
Integer i2 = 100;
Integer i3 = 200;
Integer i4 = 200;
System.out.println(i1i2);
System.out.println(i3
i4);

Output: true false
观察源码:

Intteger.valueOf方法

public static Integer valueOf(int i) {
if (i >= IntegerCache.low && i <= IntegerCache.high)
return IntegerCache.cache[i + (-IntegerCache.low)];
return new Integer(i);
}
IntegerCache类

private static class IntegerCache {
static final int low = -128;
static final int high;
static final Integer cache[];

static {
    // high value may be configured by property
    int h = 127;
    String integerCacheHighPropValue =
        sun.misc.VM.getSavedProperty("java.lang.Integer.IntegerCache.high");
    if (integerCacheHighPropValue != null) {
        try {
            int i = parseInt(integerCacheHighPropValue);
            i = Math.max(i, 127);
            // Maximum array size is Integer.MAX_VALUE
            h = Math.min(i, Integer.MAX_VALUE - (-low) -1);
        } catch( NumberFormatException nfe) {
            // If the property cannot be parsed into an int, ignore it.
        }
    }
    high = h;

    cache = new Integer[(high - low) + 1];
    int j = low;
    for(int k = 0; k < cache.length; k++)
        cache[k] = new Integer(j++);

    // range [-128, 127] must be interned (JLS7 5.1.7)
    assert IntegerCache.high >= 127;
}

private IntegerCache() {}

}
从源码可以看出,在通过valueOf方法创建Integer对象的时候,如果数值在[-128,127]之间,便返回指向IntegerCache.cache中已经存在的对象的引用;否则创建一个新的Integer对象

Byte、Short、Integer、Long四种包装类默认创建了数值为[-128,127]的相应类型的缓存数据,但是超出此范围仍会创建新的对象。

Character默认会创建[0,127]的响应类型的缓存数据

两种浮点型没有实现常量池技术,在某个范围内的整型数值的个数是有限的,而浮点数却不是

包装类 常量池 常量池范围
Byte 存在 [-128,127]
Short 存在 [-128,127]
Integer 存在 [-128,127]
Long 存在 [-128,127]
Character 存在 [0,127]
Float 不存在 无
Double 不存在 无
注意点:
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1421
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1420
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1419
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1418
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1417
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1416
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1415
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1414
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1413
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1412
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1411
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1410
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1409
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1408
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1407
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1406
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1405
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1404
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1403
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1402
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1401
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1400
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1399
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1398
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1397
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1396
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1395
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1394
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1393
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1392
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1391
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1390
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1389
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1388
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1387
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1386
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1385
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1384
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1383
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1382
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1381
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1380
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1379
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1378
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1377
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1376
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1375
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1374
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1373
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1372
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1371
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1370
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1369
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1368
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1367
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1366
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1365
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1364
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1363
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1362
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1361
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1360
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1359
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1358
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1357
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1356
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1355
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1354
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1353
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1352
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1351
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1350
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1349
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1348
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1347
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1346
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1345
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1344
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1343
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1342
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1341
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1340
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1339
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1338
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1337
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1336
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1335
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1334
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1333
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1332
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1331
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1330
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1329
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1328
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1327
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1326
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1325
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1324
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1323
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1322
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1321
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1320
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1319
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1318
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1317
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1316
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1315
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1314
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1313
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1312
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1311
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1310
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1309
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1308
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1307
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1306
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1305
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1304
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1303
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1302
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1301
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1300
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1299
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1298
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1297
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1296
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1295
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1294
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1293
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1292
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1291
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1290
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1289
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1288
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1287
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1286
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1285
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1284
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1283
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1282
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1281
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1280
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1279
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1278
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1277
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1276
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1275
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1274
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1273
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1272
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1271
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1270
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1269
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1268
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1267
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1266
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1265
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1264
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1263
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1262
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1261
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1260
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1259
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1258
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1257
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1256
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1255
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1254
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1253
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1252
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1251
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1250
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1249
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1248
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1247
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1246
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1245
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1244
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1243
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1242
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1241
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1240
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1239
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1238
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1237
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1236
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1235
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1234
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1233
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1232
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1231
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1230
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1229
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1228
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1227
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1226
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1225
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1224
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1223
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1222
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1221
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1220
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1219
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1218
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1217
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1216
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1215
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1214
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1213
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1212
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1211
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1210
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1209
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1208
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1207
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1206
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1205
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1204
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1203
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1202
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1201
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1200
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1199
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1198
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1197
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1196
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1195
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1194
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1193
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1192
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1191
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1190
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1189
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1188
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1187
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1186
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1185
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1184
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1183
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1182
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1181
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1180
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1179
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1178
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1177
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1176
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1175
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1174
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1173
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1172
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1171
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1170
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1169
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1168
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1167
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1166
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1165
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1164
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1163
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1162
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1161
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1160
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1159
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1158
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1157
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1156
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1155
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1154
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1153
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1152
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1151
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1150
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1149
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1148
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1147
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1146
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1145
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1144
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1143
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1142
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1141
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1140
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1139
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1138
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1137
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1136
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1135
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1134
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1133
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1132
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1131
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1130
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1129
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1128
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1127
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1126
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1125
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1124
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1123
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1122
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1121
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1120
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1119
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1118
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1117
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1116
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1115
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1114
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1113
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1112
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1111
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1110
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1109
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1108
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1107
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1106
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1105
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1104
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1103
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1102
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1101
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1100
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1099
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1098
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1097
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1096
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1095
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1094
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1093
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1092
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1091
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1090
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1089
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1088
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1087
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1086
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1085
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1084
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1083
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1082
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1081
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1080
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1079
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1078
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1077
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1076
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1075
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1074
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1073
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1072
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1071
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1070
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1069
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1068
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1067
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1066
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1065
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1064
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1063
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1062
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1061
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1060
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1059
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1058
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1057
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1056
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1055
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1054
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1053
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1052
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1051
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1050
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1049
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1048
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1047
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1046
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1045
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1044
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1043
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1042
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1041
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1040
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1039
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1038
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1037
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1036
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1035
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1034
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1033
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1032
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1031
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1030
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1029
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1028
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1027
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1026
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1025
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1024
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1023
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1022
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1021
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1020
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1019
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1018
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1017
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1016
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1015
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1014
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1013
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1012
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1011
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1010
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1009
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1008
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1007
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1006
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1005
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1004
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1003
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1002
http://xunlan.chd.edu.cn/chdbbs/forum.php?mod=viewthread&tid=1001
当 "=="运算符的两个操作数都是 包装器类型的引用,则是比较指向的是否是同一个对象,而如果其中有一个操作数是表达式(即包含算术运算)则比较的是数值(即会触发自动拆箱的过程)
对于包装器类型,equals方法并不会进行类型转换
算术运算会触发装箱与拆箱过程

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值