AbstractStringBuilder.GetChars(Int32, Int32, Char[], Int32) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
字元會從這個序列複製到目的字元陣列 dst
。
[Android.Runtime.Register("getChars", "(II[CI)V", "GetGetChars_IIarrayCIHandler")]
public virtual void GetChars (int srcBegin, int srcEnd, char[]? dst, int dstBegin);
[<Android.Runtime.Register("getChars", "(II[CI)V", "GetGetChars_IIarrayCIHandler")>]
abstract member GetChars : int * int * char[] * int -> unit
override this.GetChars : int * int * char[] * int -> unit
參數
- srcBegin
- Int32
從這個位移開始複製。
- srcEnd
- Int32
停止在此位移複製。
- dst
- Char[]
要將數據複製到其中的陣列。
- dstBegin
- Int32
位移至 dst
。
- 屬性
備註
字元會從這個序列複製到目的字元陣列 dst
。 要複製的第一個字元位於索引 srcBegin
;要複製的最後一個字元位於索引 srcEnd-1
。 要複製的字元總數為 srcEnd-srcBegin
。 字元會複製到從索引dstBegin
開始並結束於索引的子陣列dst
中:
{@code
dstbegin + (srcEnd-srcBegin) - 1
}
的 java.lang.AbstractStringBuilder.getChars(int, int, char[], int)
Java 檔。
此頁面的部分是根據 Android 開放原始碼專案所建立和共用的工作進行修改,並根據 Creative Commons 2.5 屬性授權中所述的詞彙使用。