在Java后端中,可以使用數組作為方法參數來接收數組數據。以下是一些示例代碼:
public void processIntArray(int[] array) {
// 處理整型數組
for (int i = 0; i < array.length; i++) {
System.out.println(array[i]);
}
}
public void processStringArray(String[] array) {
// 處理字符串數組
for (int i = 0; i < array.length; i++) {
System.out.println(array[i]);
}
}
public void processObjectArray(Object[] array) {
// 處理對象數組
for (int i = 0; i < array.length; i++) {
System.out.println(array[i]);
}
}
在調用上述方法時,可以將數組作為參數傳遞給方法:
int[] intArray = {1, 2, 3, 4, 5};
processIntArray(intArray);
String[] stringArray = {"hello", "world"};
processStringArray(stringArray);
Object[] objectArray = {new Integer(1), "hello", new Double(3.14)};
processObjectArray(objectArray);
通過這種方式,Java后端可以輕松地接收并處理傳遞過來的數組數據。