在Java編程語言中,括號主要有以下幾種用途:
小括號(()
):
public void myMethod(int a, int b) {}
myMethod(5, 10);
int result = (a + b) * c;
MyClass obj = new MyClass();
大括號({}
):
public class MyClass {
public void myMethod() {
// 方法體
}
}
public class MyClass {
{
// 初始化塊
}
}
if (condition) {
// 條件為真時執行的代碼
} else {
// 條件為假時執行的代碼
}
中括號([]
):
int[] arr = new int[5]; // 聲明一個長度為5的整型數組
int value = arr[0]; // 訪問數組的第一個元素
int[][] matrix = new int[3][3];
這些括號在Java編程中起到了非常重要的作用,幫助我們組織和編寫代碼。