共用方式為


Array.blit<'T> 函式 (F#)

讀取第一個陣列中某個範圍的元素,然後將這些元素寫入第二個陣列。

**命名空間/模組路徑:**Microsoft.FSharp.Collections.Array

組件:FSharp.Core (在 FSharp.Core.dll 中)

// Signature:
Array.blit : 'T [] -> int -> 'T [] -> int -> int -> unit

// Usage:
Array.blit source sourceIndex target targetIndex count

參數

  • source
    型別:'T []

    來源陣列。

  • sourceIndex
    型別:int

    來源陣列的起始索引。

  • target
    型別:'T []

    目標陣列。

  • targetIndex
    型別:int

    目標陣列的起始索引。

  • count
    型別:int

    要複製的元素數目。

備註

這個函式在已編譯的組件中名為 CopyTo。 如果您是透過 F# 以外的語言,或是透過反映來存取函式,請使用這個名稱。

範例

下列程式碼範例說明如何使用 Array.blit

let array1 = [| 1 .. 10 |]
let array2 = Array.zeroCreate 20
// Copy 4 elements from index 3 of array1 to index 5 of array2.
Array.blit array1 3 array2 5 4
printfn "%A" array2

Output

  

平台

Windows 8 中, Windows 7, Windows Server 2012 上, Windows Server 2008 R2

版本資訊

F# 核心程式庫版本

支援版本:2.0, 4.0,可攜式執行檔 (PE)。

請參閱

參考

Collections.Array 模組 (F#)

Microsoft.FSharp.Collections 命名空間 (F#)