C # 's Lazy and Lazyinitializer

Source: Internet
Author: User

1     class Program2     {3         Static voidMain (string[] args)4         {5             //Initializes a new instance of the Lazy class6             //When deferred initialization occurs, the specified initialization function and initialization mode are used7             //Parameters:8             //valuefactory:9             //called to generate a delegate that generates a deferred initialization value when needed. Ten             // One             //IsThreadSafe: A             //True if this instance can be used by more than one thread at a time, false if the instance can be used by only one thread at a time.  -Lazy<string> lazy =NewLazy<string> (() = -             { the                 returnDateTime.Now.ToLongTimeString (); -},true); -  -             //False (value not yet queried) + Console.WriteLine (lazy. isvaluecreated); - Console.WriteLine (lazy. Value); +             //true (value already queried) A Console.WriteLine (lazy. isvaluecreated); atThread.Sleep ( the); -             //value does not change after 3 seconds - Console.WriteLine (lazy. Value); -  -             stringstr =NULL; -             //use "String1." If Str is not initialized. Initialize STR inLazyinitializer.ensureinitialized (refSTR, () ="String1."); -             //output String1. to Console.WriteLine (str); +  -             //Str has been initialized, is no longer initialized, and therefore does not become "String2." theLazyinitializer.ensureinitialized (refSTR, () ="String2."); *             //output String1. $ Console.WriteLine (str);Panax Notoginseng  - console.readline (); the         } +}

C # 's Lazy and Lazyinitializer

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.