共用方式為


Lazy.CreateFromValue<'T> 擴充方法 (F#)

建立延遲計算,用於強制評估所指定值的結果。

**命名空間/模組路徑:**Microsoft.FSharp.Control.LazyExtensions

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

// Signature:
type System.Lazy with
  member static CreateFromValue : Lazy<'T>

// Usage:
lazy.CreateFromValue (value)

參數

  • value
    型別:'T

    輸入值。

傳回值

所建立的 Lazy 物件。

範例

下列程式碼範例說明 Lazy.CreateFromValue 擴充方法的用法。在此範例中,使用字典存放之前計算的值。呼叫階乘函式時,如果值已計算,就會以快取的結果來呼叫 Lazy.CreateFromValue。如果尚未計算值,則使用Lazy.Create


let cacheMap = new System.Collections.Generic.Dictionary<_, _>()
cacheMap.Add(0, 1I)
cacheMap.Add(1, 1I)

let lazyFactorial n =
    let rec factorial n =
        if cacheMap.ContainsKey(n) then cacheMap.[n] else
        let result = new System.Numerics.BigInteger(n) * factorial (n - 1)
        cacheMap.Add(n, result)
        result
    if cacheMap.ContainsKey(n) then
        printfn "Reading factorial for %d from cache." n
        Lazy.CreateFromValue(cacheMap.[n])
    else
        printfn "Creating lazy factorial for %d." n
        Lazy.Create (fun () ->
            printfn "Evaluating lazy factorial for %d." n
            let result = factorial n
            result)

printfn "%A" ((lazyFactorial 12).Force())
printfn "%A" ((lazyFactorial 10).Force())
printfn "%A" ((lazyFactorial 11).Force())
printfn "%A" ((lazyFactorial 30).Force())

Output

  
  
  
  
  
  
  

平台

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

版本資訊

F# 核心程式庫版本

支援版本:2.0

請參閱

參考

Control.LazyExtensions 模組 (F#)

Lazy<T>

延遲運算 (F#)