在Java中,可以使用花括號({})來定義一個代碼塊。代碼塊可以用于控制結構(如if語句或循環語句)中,或者在方法中定義局部變量。
以下是一些使用代碼塊的示例:
int num = 10;
if (num > 5) {
System.out.println("Number is greater than 5");
System.out.println("Inside the code block");
}
for (int i = 0; i < 5; i++) {
System.out.println("Inside the code block of for loop");
System.out.println("i = " + i);
}
public void myMethod() {
{
int x = 5;
System.out.println("Inside the code block of myMethod");
System.out.println("x = " + x);
}
// 可以繼續在方法中定義其他局部變量
int y = 10;
System.out.println("y = " + y);
}
在上述例子中,代碼塊通過花括號將相關語句組合在一起。代碼塊內的語句將按順序執行。