C# 延迟处理类 Lazy

Posted 左正

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C# 延迟处理类 Lazy相关的知识,希望对你有一定的参考价值。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace Lazy
{
    class Program
    {
        static void Main(string[] args)
        {
            School aa = new School();
            List<student> ass=aa.lazy_students.Value;
            foreach (var m in ass)
            {
                Console.WriteLine("姓名:{0} 年龄:{1},时间:{2}",m.name,m.age,m.date);
            }
            Console.ReadKey();
            
        }
    }
    public class School
    {
        public Lazy<List<student>> lazy_students { get; set; }

        public School()
        {
            lazy_students = new Lazy<List<student>>(() =>this.SetLazy());
        }
        private List<student> SetLazy()
        {
            List<student> ss = new List<student>{
            new  student{name="sx",age=18,date=DateTime.Now},
            new student{name="sb",age=19,date=DateTime.Now}
            
            
            };
            return ss;
        }
    }
    public class student
    {
        public string name { get; set; }
        public int age { get; set; }
        public DateTime date { get; set; }
    }
}

以上是关于C# 延迟处理类 Lazy的主要内容,如果未能解决你的问题,请参考以下文章

Lazy<T>的应用之类内部字段与C#延迟加载

Lazy Load, 延迟加载图片的 jQuery 插件

C# Lazy Loading

@lazy注解处理循环注入问题

使用 FetchType.LAZY 休眠 ManyToOne 不会延迟获取

音频标签的 Html5 延迟“onplay”事件处理程序?