您好,登錄后才能下訂單哦!
在Java中,數組是一種特殊的對象,它們可以存儲固定數量的同一類型的元素。由于數組是原始數據類型,因此不能直接將其作為類的屬性。為了將數組封裝在類中,我們需要創建一個數組類的子類,這個子類將包含一個數組實例以及用于操作該數組的方法。
以下是一個簡單的示例,演示了如何創建一個名為MyArray
的類,該類封裝了一個整數數組:
public class MyArray {
private int[] array;
private int size;
public MyArray(int capacity) {
array = new int[capacity];
size = 0;
}
public void add(int value) {
if (size >= array.length) {
// 如果數組已滿,需要擴容
int[] newArray = new int[array.length * 2];
System.arraycopy(array, 0, newArray, 0, array.length);
array = newArray;
}
array[size++] = value;
}
public int get(int index) {
if (index < 0 || index >= size) {
throw new IndexOutOfBoundsException("Index out of bounds");
}
return array[index];
}
public int[] toArray() {
int[] result = new int[size];
System.arraycopy(array, 0, result, 0, size);
return result;
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。