您的位置:首页 > 其它

尽情享受每一个字节

2015-08-31 11:18 197 查看
下面的程序循环遍历byte数值,以查找某个特定值。这个程序会打印出什么呢?

public class BigDelight {

public static void main(String[] args) {

for (byte b = Byte.MIN_VALUE; b < Byte.MAX_VALUE; b++) {

if (b == 0x90)

System.out.print("Joy!");

}

}

}

这个循环在除了Byte.MAX_VALUE之外所有的byte数值中进行迭代,以查找0x90。这个数值适合用byte表示,并且不等于Byte.MAX_VALUE,因此你可能会想这个循环在该迭代会找到它一次,并将打印出Joy!。但是,所见为虚。如果你运行该程序,就会发现它没有打印任何东西。怎么回事?

简单地说,0x90是一个int常量,它超出了byte数值的范围。这与直觉是相悖的,因为0x90是一个两位的十六进制字面常量,每一个十六进制位都占据4个比特的位置,所以整个数值也只占据8个比特,即1个byte。问题在于byte是有符号类型。常量0x90是一个正的最高位被置位的8位int数值。合法的byte数值是从-128到+127,但是int常量0x90等于+144。

拿一个byte与一个int进行的比较是一个混合类型比较(mixed-type comparison)。如果你把byte数值想象为苹果,把int数值想象成为桔子,那么该程序就是在拿苹果与桔子比较。请考虑表达式((byte)0x90==0x90),尽管外表看起来是成立的,但是它却等于false。

为了比较byte数值(byte)0x90和int数值0x90,Java通过拓宽原始类型转换将byte提升为一个int[JLS5.1.2],然后比较这两个int数值。因为byte是一个有符号类型,所以这个转换执行的是符号扩展,将负的byte数值提升为了在数字上相等的int数值。在本例中,该转换将(byte)0x90提升为int数值-112,它不等于int数值0x90,即+144。

由于系统总是强制地将一个操作数提升到与另一个操作数相匹配的类型,所以混合类型比较总是容易把人搞糊涂。这种转换是不可视的,而且可能不会产生你所期望的结果。有若干种方法可以避免混合类型比较。我们继续有关水果的比喻,你可以选择拿苹果与苹果比较,或者是拿桔子与桔子比较。你可以将int转型为byte,之后你就可以拿一个byte与另一个byte进行比较了:

if (b == (byte) 0x90)

System.out.println("Joy!");

或者,你可以用一个屏蔽码来消除符号扩展的影响,从而将byte转型为int,之后你就可以拿一个int与另一个int进行比较了:

if ((b & 0xff) == 0x90)

System.out.print("Joy!");

上面的两个解决方案都可以正常运行,但是避免这类问题的最佳方法还是将常量值移出到循环的外面,并将其在一个常量声明中定义它。下面是我们对此作出的第一个尝试:

public class BigDelight2 {

private static final byte TARGET = 0x90;

public static void main(String[] args) {

for (byte b = Byte.MIN_VALUE; b < Byte.MAX_VALUE; b++) {

if (b == TARGET)

System.out.print("Joy!");

}

}

}

遗憾的是,它根本就通不过编译。常量声明有问题,编译器会告诉你问题所在:0x90对于byte类型来说不是一个有效的数值。

如果你想下面这样订正该声明,那么程序将运行得非常好:

private static final byte TARGET = (byte) 0x90;

总之,要避免混合类型比较,因为它们内在地容易引起混乱(谜题5)。为了帮助实现这个目标,请使用声明的常量替代“魔幻数字”。你已经了解了这确实是一个好主意:它说明了常量的含义,集中了常量的定义,并且根除了重复的定义。现在你知道它还可以强制你去为每一个常量赋予适合其用途的类型,从而消除了产生混合类型比较的一种根源。

对语言设计的教训是byte数值的符号扩展是产生bug和混乱的一种常见根源。而用来抵销符号扩展效果所需的屏蔽机制会使得程序显得混乱无序,从而降低了程序的可读性。因此,byte类型应该是无符号的。还可以考虑为所有的原始类型提供定义字面常量的机制,这可以减少对易于产生错误的类型转换的需求(谜题27)。

ttp://wap.pf021.cn/

http://wap.pf021.cn/zt/qwzj/
http://wap.pf021.cn/zt/lylx/
http://m.pfb163.com/
http://m.pfb163.com/zt/qwzj/
http://m.pfb163.com/zt/lylx/ http://www.pf021.cn/expert/ http://www.pf021.cn/academic/ http://www.pf021.cn/address/ http://www.pf021.cn/process/ http://www.pf021.cn/news/ http://www.pf021.cn/news/2015/1202.html http://www.pf021.cn/news/2015/1201.html http://www.pf021.cn/news/2015/1200.html
http://www.pf021.cn/news/2015/1199.html
http://www.pf021.cn/news/2015/1198.html
http://www.pf021.cn/news/index_2.html
http://www.pf021.cn/news/2015/1197.html http://www.pf021.cn/news/2014/1196.html http://www.pf021.cn/news/2012/898.html http://www.pf021.cn/news/2012/267.html http://www.pf021.cn/news/2012/266.html http://www.pf021.cn/news/index_3.html http://www.pf021.cn/news/2012/102.html http://www.pf021.cn/news/2012/101.html http://www.pf021.cn/news/2012/100.html http://www.pf021.cn/news/2012/99.html http://www.pf021.cn/cases/ http://www.pf021.cn/cases/1516.html http://www.pf021.cn/cases/1511.html http://www.pf021.cn/cases/1512.html http://www.pf021.cn/cases/1509.html http://www.pf021.cn/cases/1507.html http://www.pf021.cn/cases/index_2.html http://www.pf021.cn/cases/1505.html http://www.pf021.cn/cases/1501.html http://www.pf021.cn/cases/1503.html http://www.pf021.cn/cases/1497.html http://www.pf021.cn/cases/1498.html http://www.pf021.cn/cases/index_3.html http://www.pf021.cn/cases/1495.html http://www.pf021.cn/cases/1496.html http://www.pf021.cn/cases/1493.html http://www.pf021.cn/cases/1494.html http://www.pf021.cn/cases/1490.html http://www.pf021.cn/cases/index_4.html http://www.pf021.cn/cases/1491.html http://www.pf021.cn/cases/1488.html http://www.pf021.cn/cases/1489.html http://www.pf021.cn/cases/1485.html http://www.pf021.cn/cases/1486.html http://www.pf021.cn/cases/index_5.html http://www.pf021.cn/cases/1483.html http://www.pf021.cn/cases/1480.html http://www.pf021.cn/cases/1481.html http://www.pf021.cn/cases/1482.html http://www.pf021.cn/cases/1477.html http://www.pf021.cn/cases/index_6.html http://www.pf021.cn/cases/1479.html http://www.pf021.cn/cases/1475.html<
c3d2
br />http://www.pf021.cn/cases/1476.html http://www.pf021.cn/cases/1472.html http://www.pf021.cn/cases/1473.html
http://www.pf021.cn/cases/index_7.html http://www.pf021.cn/cases/1474.html http://www.pf021.cn/cases/1469.html http://www.pf021.cn/cases/1470.html http://www.pf021.cn/cases/1471.html http://www.pf021.cn/cases/1467.html http://www.pf021.cn/cases/index_8.html http://www.pf021.cn/cases/1468.html http://www.pf021.cn/cases/1464.html http://www.pf021.cn/cases/1465.html http://www.pf021.cn/cases/1466.html http://www.pf021.cn/cases/1461.html http://www.pf021.cn/cases/index_9.html http://www.pf021.cn/cases/1462.html http://www.pf021.cn/cases/1463.html http://www.pf021.cn/cases/1459.html http://www.pf021.cn/cases/1460.html http://www.pf021.cn/cases/1456.html http://www.pf021.cn/cases/index_10.html http://www.pf021.cn/cases/1457.html http://www.pf021.cn/cases/1458.html http://www.pf021.cn/cases/1453.html http://www.pf021.cn/cases/1454.html http://www.pf021.cn/cases/1455.html http://www.pf021.cn/cases/index_11.html http://www.pf021.cn/cases/1450.html http://www.pf021.cn/cases/1451.html http://www.pf021.cn/cases/1452.html http://www.pf021.cn/cases/1449.html http://www.pf021.cn/cases/1445.html http://www.pf021.cn/cases/index_12.html http://www.pf021.cn/cases/1443.html http://www.pf021.cn/cases/1441.html http://www.pf021.cn/cases/1439.html http://www.pf021.cn/cases/1436.html http://www.pf021.cn/cases/1434.html http://www.pf021.cn/cases/index_13.html http://www.pf021.cn/cases/1432.html http://www.pf021.cn/cases/1433.html http://www.pf021.cn/cases/1428.html http://www.pf021.cn/cases/1430.html http://www.pf021.cn/cases/1425.html http://www.pf021.cn/cases/index_14.html http://www.pf021.cn/cases/1422.html http://www.pf021.cn/cases/1421.html http://www.pf021.cn/cases/1415.html http://www.pf021.cn/cases/1419.html http://www.pf021.cn/cases/1409.html http://www.pf021.cn/cases/index_15.html http://www.pf021.cn/cases/1411.html http://www.pf021.cn/cases/1412.html http://www.pf021.cn/cases/1408.html http://www.pf021.cn/cases/1406.html http://www.pf021.cn/cases/1390.html http://www.pf021.cn/cases/index_16.html http://www.pf021.cn/cases/1391.html http://www.pf021.cn/cases/1386.html http://www.pf021.cn/cases/1380.html http://www.pf021.cn/cases/1377.html http://www.pf021.cn/cases/1378.html http://www.pf021.cn/cases/index_17.html http://www.pf021.cn/cases/1374.html http://www.pf021.cn/cases/1376.html http://www.pf021.cn/cases/1369.html http://www.pf021.cn/cases/1366.html http://www.pf021.cn/cases/1368.html http://www.pf021.cn/cases/index_18.html http://www.pf021.cn/cases/1362.html http://www.pf021.cn/cases/1363.html http://www.pf021.cn/cases/1358.html http://www.pf021.cn/cases/1359.html http://www.pf021.cn/cases/1360.html http://www.pf021.cn/cases/index_19.html http://www.pf021.cn/cases/1356.html http://www.pf021.cn/cases/1357.html http://www.pf021.cn/cases/1354.html http://www.pf021.cn/cases/1349.html http://www.pf021.cn/cases/1350.html http://www.pf021.cn/cases/index_20.html http://www.pf021.cn/cases/1348.html http://www.pf021.cn/cases/1346.html http://www.pf021.cn/cases/1343.html http://www.pf021.cn/cases/1338.html http://www.pf021.cn/cases/1340.html http://www.pf021.cn/cases/index_21.html http://www.pf021.cn/cases/1336.html http://www.pf021.cn/cases/1334.html http://www.pf021.cn/cases/1335.html http://www.pf021.cn/cases/1331.html http://www.pf021.cn/cases/1332.html http://www.pf021.cn/cases/index_22.html http://www.pf021.cn/cases/1333.html http://www.pf021.cn/cases/1329.html http://www.pf021.cn/cases/1330.html http://www.pf021.cn/cases/1327.html http://www.pf021.cn/cases/1328.html http://www.pf021.cn/cases/index_23.html http://www.pf021.cn/cases/1323.html http://www.pf021.cn/cases/1324.html http://www.pf021.cn/cases/1325.html http://www.pf021.cn/cases/1321.html http://www.pf021.cn/cases/1318.html http://www.pf021.cn/cases/index_24.html http://www.pf021.cn/cases/1320.html http://www.pf021.cn/cases/1315.html http://www.pf021.cn/cases/1317.html http://www.pf021.cn/cases/1314.html http://www.pf021.cn/cases/1311.html http://www.pf021.cn/cases/index_25.html http://www.pf021.cn/cases/1312.html http://www.pf021.cn/cases/1307.html http://www.pf021.cn/cases/1308.html http://www.pf021.cn/cases/1309.html http://www.pf021.cn/cases/1288.html http://www.pf021.cn/cases/index_26.html http://www.pf021.cn/cases/1287.html http://www.pf021.cn/cases/1284.html http://www.pf021.cn/cases/1280.html http://www.pf021.cn/cases/1277.html http://www.pf021.cn/cases/1273.html http://www.pf021.cn/cases/index_27.html http://www.pf021.cn/cases/1274.html http://www.pf021.cn/cases/1270.html http://www.pf021.cn/cases/1264.html http://www.pf021.cn/cases/1259.html http://www.pf021.cn/cases/1256.html http://www.pf021.cn/cases/index_28.html http://www.pf021.cn/cases/1254.html http://www.pf021.cn/cases/1252.html http://www.pf021.cn/cases/1249.html http://www.pf021.cn/cases/1251.html http://www.pf021.cn/cases/1247.html http://www.pf021.cn/cases/index_29.html http://www.pf021.cn/cases/1248.html http://www.pf021.cn/cases/1244.html http://www.pf021.cn/cases/1245.html http://www.pf021.cn/cases/1243.html http://www.pf021.cn/cases/1241.html http://www.pf021.cn/cases/index_30.html http://www.pf021.cn/cases/1239.html http://www.pf021.cn/cases/1237.html http://www.pf021.cn/cases/1234.html http://www.pf021.cn/cases/1235.html http://www.pf021.cn/cases/1231.html http://www.pf021.cn/cases/index_31.html http://www.pf021.cn/cases/1232.html http://www.pf021.cn/cases/1233.html http://www.pf021.cn/cases/1230.html http://www.pf021.cn/cases/1227.html http://www.pf021.cn/cases/1228.html http://www.pf021.cn/cases/index_32.html
http://www.pf021.cn/cases/1225.html http://www.pf021.cn/cases/1220.html http://www.pf021.cn/cases/1219.html http://www.pf021.cn/cases/1218.html http://www.pf021.cn/cases/1216.html
http://www.pf021.cn/cases/index_33.html http://www.pf021.cn/cases/1215.html http://www.pf021.cn/cases/1213.html http://www.pf021.cn/cases/1212.html http://www.pf021.cn/cases/1210.html http://www.pf021.cn/cases/1209.html http://www.pf021.cn/cases/index_34.html http://www.pf021.cn/cases/1207.html http://www.pf021.cn/cases/1206.html http://www.pf021.cn/cases/1204.html http://www.pf021.cn/cases/1203.html http://www.pf021.cn/cases/64.html
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: