D(程式語言)/d2/切片
D中的切片是該語言最強大和最有用的方面之一。本課實際上是對上一課的繼續 - 您還將更深入地瞭解D的陣列是如何工作的。
import std.stdio;
void writeln_middle(string msg)
{
writeln(msg[1 .. $ - 1]);
}
void main()
{
int[] a = [1,3,5,6];
a[0..2] = [6,5];
writeln(a); // [6, 5, 5, 6]
a[0..$] = [0,0,0,0];
writeln(a); // [0, 0, 0, 0]
a = a[0 .. 3];
writeln(a); // [0, 0, 0]
a ~= [3,5];
writeln(a); // [0, 0, 0, 3, 5]
int[] b;
b.length = 2;
b = a[0 .. $];
writeln(b.length); // 5
b[0] = 10;
writeln(b); // [10, 0, 0, 3, 5]
writeln(a); // [10, 0, 0, 3, 5]
writeln_middle("Phobos"); // hobo
writeln_middle("Phobos rocks");
}
您可以在 D 中使用此語法對陣列進行切片
arr[start_index .. end_index]
end_index處的元素不包含在切片中。請記住,動態陣列只是具有指向第一個元素的指標和長度值的結構。對動態陣列進行切片只是建立一個指向同一陣列元素的新指標結構。
string a = "the entire part of the array";
string b = a[11 .. $]; // b = "part of the array"
// b points to the last 17 elements of a
// If you modify individual elements of b, a will also
// change since they point to the same underlying array!
請注意,$會自動替換為被切片的陣列的長度。以下三行是等效的,並且都建立了陣列arr的整個切片。
char[] a = arr[0 .. $];
char[] a = arr[0 .. arr.length];
char[] a = arr[]; // shorthand for the above
D中的所有動態陣列都有一個.capacity屬性。它是可以在不將陣列移到其他位置(重新分配)的情況下追加到該陣列的最大元素數量。
int[] a = [1,2,3,45];
writeln("Ptr: ", a.ptr);
writeln("Capacity: ", a.capacity);
a.length = a.capacity; // the array reaches maximum length
writeln("Ptr: ", a.ptr, "\nCapacity: ", a.capacity); // Still the same
a ~= 1; // array has exceeded its capacity
// it has either been moved to a spot in memory with more space
// or the memory space has been extended
// if the former is true, then a.ptr is changed.
writeln("Capacity: ", a.capacity); // Increased
為了提高效率,確保追加和連線不會導致過多重新分配是有好處的,因為重新分配動態陣列是一個昂貴的過程。以下程式碼可能會最多重新分配 5 次
int[] a = [];
a ~= new int[10];
a ~= [1,2,3,4,5,6,7,8,9];
a ~= a;
a ~= new int[20];
a ~= new int[30];
確保陣列capacity在開始時足夠大,以允許在稍後進行高效的非重新分配陣列追加和連線,如果效能是一個問題的話。您無法修改.capacity屬性。您只允許修改長度,或者使用reserve函式。
int[] a = [1,2,3,45];
a.reserve(10); // if a's capacity is more than 10, nothing is done
// else a is reallocated so that it has a capacity of at least 10
請記住,D的陣列是按值傳遞給函式的。當靜態陣列被傳遞時,整個陣列被複制。當動態陣列被傳遞時,只有指向底層陣列的指標和長度的結構被複制 - 底層陣列沒有被複制。
import std.stdio;
int[] a = [1,2,3];
void function1(int[] arr)
{
assert(arr.ptr == a.ptr); // They are the same
// But the arr is not the same as a
// If arr's .length is modified, a is unchanged.
// both arr and a's .ptr refer to the same underlying array
// so if you wrote: arr[0] = 0;
// both arr and a would show the change, because they are both
// references to the same array.
// what if you forced arr to reallocate?
arr.length = 200; // most likely will reallocate
// now arr and a refer to different arrays
// a refers to the original one, but
// arr refers to the array that's reallocated to a new spot
arr[0] = 0;
writeln(arr[0]); // 0
writeln(a[0]); // 1
}
void main()
{
function1(a);
}
正如您所看到的,如果您將動態陣列傳遞給如下所示的函式,則有幾種可能性
void f(int[] arr)
{
arr.length = arr.length + 10;
arr[0] += 10;
}
- 第一種可能性:陣列的容量足夠大,可以容納調整大小,因此沒有發生重新分配。原始底層陣列的第一個元素被修改了。
- 第二種可能性:陣列的容量不足以容納調整大小,但 D 的記憶體管理能夠在不復制整個陣列的情況下擴充套件記憶體空間。原始底層陣列的第一個元素被修改了。
- 第三種可能性:陣列的容量不足以容納調整大小。D的記憶體管理不得不將底層陣列重新分配到記憶體中的一個全新的空間。原始底層陣列的第一個元素沒有被修改。
如果您想確保以下內容有效,該怎麼辦?
int[] a = [0,0,0];
f(a);
assert(a[0] == 10);
只需更改函式f,使其按引用傳遞動態陣列
void f(ref int[] arr)
{
arr.length = arr.length + 10;
arr[0] += 10;
}
當您對動態陣列進行切片,然後追加到該切片時,該切片是否被重新分配取決於切片結束的位置。如果切片在原始陣列資料的中間結束,那麼追加到該切片會導致重新分配。
int[] a = [1,2,3,4];
auto b = a[1 .. 3];
writeln(b.capacity); // 0
// b cannot possibly be appended
// without overwriting elements of a
// therefore, its capacity is 0
// any append would cause reallocation
假設您對動態陣列進行切片,並且該切片在動態陣列結束的地方結束。如果將動態陣列追加到該切片,以便該切片不再在動態陣列資料結束的地方結束,會發生什麼?
int[] a = [1,2,3,4];
writeln(a.capacity); // 7
auto b = a[1 .. 4];
writeln(b.capacity); // 6
a ~= 5; // whoops!
// now the slice b does *not* end at the end of a
writeln(a.capacity); // 7
writeln(b.capacity); // 0
切片的.capacity屬性確實取決於對同一資料的其他引用。
賦值到切片看起來像這樣
a[0 .. 10] = b
您正在將 b 賦值到 a 的一個切片。您實際上在過去兩節課中已經見過賦值到切片,甚至在您學習切片之前。還記得這個嗎?
int[] a = [1,2,3];
a[] = 3;
請記住,a[] 是 a[0 .. $] 的簡寫。當您將 int[] 切片賦值給單個 int 值時,該 int 值將被賦值給該切片中的所有元素。賦值到切片總是會導致資料被複制。
int[4] a = [0,0,0,0];
int[] b = new int[4];
b[] = a; // Assigning an array to a slice
// this guarantees array-copying
a[0] = 10000;
writeln(b[0]); // still 0
注意!無論何時使用賦值到切片,左右兩邊的 .length 值必須匹配!如果不匹配,將出現執行時錯誤!
int[] a = new int[1];
a[] = [4,4,4,4]; // Runtime error!
您還必須確保左右切片不重疊。
int[] s = [1,2,3,4,5];
s[0 .. 3] = s[1 .. 4]; // Runtime error! Overlapping Array Copy
假設您想將陣列中每個整數元素都翻倍。使用 D 的向量操作語法,您可以編寫以下任何一種
int[] a = [1,2,3,4];
a[] = a[] * 2; // each element in the slice is multiplied by 2
a[0 .. $] = a[0 .. $] * 2; // more explicit
a[] *= 2 // same thing
同樣,如果您想執行以下操作: [1, 2, 3, 4] (int[] a) + [3, 1, 3, 1] (int[] b) = [4, 3, 6, 5] 您將這樣寫
int[] a = [1, 2, 3, 4];
int[] b = [3, 1, 3, 1];
a[] += b[]; // same as a[] = a[] + b[];
就像賦值到切片一樣,您必須確保向量操作的左右兩邊具有匹配的長度,並且切片不重疊。如果您不遵守此規則,結果將是未定義的(既不會出現執行時錯誤,也不會出現編譯時錯誤)。
您可以透過編寫第一個引數為陣列的函式來定義自己的陣列屬性。
void foo(int[] a, int b)
{
// do stuff
}
void eggs(int[] a)
{
// do stuff
}
void main()
{
int[] a;
foo(a, 1);
a.foo(1); // means the same thing
eggs(a);
a.eggs; // you can omit the parentheses
// (only when there are no arguments)
}
- 如果您想了解更多資訊,史蒂文·施韋格霍夫 (Steven Schveighoffer) 的文章 "D 切片" 是一個極好的資源。
