简体   繁体   中英

What's the difference between Lazy.Force() and Lazy.Value

On the MSDN documentation for Lazy.Force<T> extension method says:

Forces the execution of this value and returns its result. Same as Value. Mutual exclusion is used to prevent other threads from also computing the value.

Does it mean that it's equivalent to creating a Lazy<T> instance with ExecutionAndPublication LazyThreadSafetyMode so that only one thread can initialize the instance?

Thanks

Yes. They are both the same, and both make sure that the value will be computed only once.

It's a bit strange that the method exists and is not a function - it's not composable and replicates the behavior of .Value .

I would define something like the following ( as seen in the F# compiler ):

module Lazy =
    // Lazy.force : Lazy<'T> -> 'T
    let force (x: Lazy<'T>) = x.Force()

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM