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