java使用程序塊(轉(zhuǎn))[@more@]在Java 中,可以將2個或2個以上的語句組成一組,這樣的一組語句稱為程序塊(Codeblocks )。程序塊是通過將所屬語句放在花括號中來實現(xiàn)。一旦創(chuàng)建了程序塊,它就成為一個邏輯單元,可以作為一個單獨的語句來使用。例如,程序塊可以作為Java 中if控制語句和for 控制語句的目標。我們來看一看下面的if控制語句:
if(x < y) { // begin a block x = y; y = 0;
} // end of block
本例中,如果x小于y,那么在程序塊內(nèi)的兩條語句都將執(zhí)行。因此,程序塊中的這2
條語句組成一個邏輯單元,不能一條語句運行,而另一條語句不運行。其中的關(guān)鍵一點是
如果你需要將兩個或多個語句在邏輯上連接起來,你就可以將其放入一個程序塊中。讓我們看另外的例子。下面的程序?qū)or 循環(huán)作為一個程序塊使用。
/*
Demonstrate a block of code.
Call this file "BlockTest.java"
*/
class BlockTest {
public static void main(String args[]) { int x,y;
y = 20;
// the target of this loop is a block
for(x = 0; x<10; x++) {
System.out.println("This is x: " + x);
System.out.println("This is y: " + y);
y = y - 2;
}
}
}
這個程序產(chǎn)生的結(jié)果如下所示:
This is x: 0
This is y: 20
This is x: 1
This is y: 18
This is x: 2
This is y: 16
This is x: 3
This is y: 14
This is x: 4
This is y: 12
This is x: 5
This is y: 10
This is x: 6
This is y: 8
This is x: 7
This is y: 6
This is x: 8
This is y: 4
This is x: 9
This is y: 2
在本例中,for循環(huán)作為一個程序塊使用,而并不是一個單獨的語句。這樣,每循環(huán)一次,塊內(nèi)的3條語句都要運行一次。這個事實當然被程序的執(zhí)行結(jié)果證實了。
在本書的后面,你會看到程序塊的其他性質(zhì)和用法。當然,它們存在的主要原因是為了創(chuàng)建邏輯上獨立的代碼單元。
網(wǎng)頁題目:java使用程序塊(轉(zhuǎn))
分享路徑:
http://weahome.cn/article/gohdgp.html