博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Autofac学习之三种生命周期:InstancePerLifetimeScope、SingleInstance、InstancePerDependency 【转载】...
阅读量:5039 次
发布时间:2019-06-12

本文共 3526 字,大约阅读时间需要 11 分钟。

InstancePerLifetimeScope:同一个Lifetime生成的对象是同一个实例

SingleInstance:单例模式,每次调用,都会使用同一个实例化的对象;每次都用同一个对象;

InstancePerDependency:默认模式,每次调用,都会重新实例化对象;每次请求都创建一个新的对象;

 

验证方法实现逻辑:在类的构造函数中,给属性赋值(GUID),通过判断属性值是否一致来判断 三种生命周期的效果。

 

先上图看结果:

1、InstancePerLifetimeScope 

 

 

2、SingleInstance

 

 

3、InstancePerDependency

 

整块代码实现如下:

using Autofac;using System;using System.Collections.Generic;using System.Linq;using System.Reflection;using System.Text;using System.Threading.Tasks; namespace SimpleAutofacConsole{    class Program    {        static void Main(string[] args)        {            //IAnimal animal = new Tiger();            //animal.Show("普通new()对象");             var builder = new ContainerBuilder();            var dependencyRegistrar = new DependencyRegistrar();//(IDependencyRegistrar)Activator.CreateInstance(typeof(IDependencyRegistrar));            dependencyRegistrar.Register(builder, null);             var container = builder.Build();             var animalIOC = container.Resolve
(); //animalIOC.Show("Autofac方式实现new()对象"); Console.WriteLine(animalIOC.Id); var animalIOC2 = container.Resolve
(); //animalIOC2.Show("第二次从容器中实例化"); Console.WriteLine(animalIOC2.Id); Console.WriteLine("开启新的生命周期"); ILifetimeScope inner = container.BeginLifetimeScope(); var myClass3 = inner.Resolve
(); Console.WriteLine(myClass3.Id); var myClass4 = inner.Resolve
(); Console.WriteLine(myClass4.Id); //var animalIOC = container.Resolve
(); //animalIOC.Show("Autofac方式实现new()对象"); Console.ReadLine(); } } public interface IAnimal { void Show(string name); string Id { get; set; } } public class Tiger : IAnimal { private string _Id; public string Id { get { return this._Id; } set { Id = this._Id; } } public Tiger() { _Id = Guid.NewGuid().ToString(); } public void Show(string name) { Console.WriteLine("老虎说:" + name); } } public class Dog : IAnimal { public string Id { get { return Guid.NewGuid().ToString(); } set { } } public void Show(string name) { Console.WriteLine("狗狗说:" + name); } } public class DependencyRegistrar : IDependencyRegistrar { public int Order { get { return 0; } } public void Register(ContainerBuilder builder, ITypeFinder typeFinder) { // InstancePerLifetimeScope 同一个Lifetime生成的对象是同一个实例 // SingleInstance 单例模式,每次调用,都会使用同一个实例化的对象;每次都用同一个对象 // InstancePerDependency 默认模式,每次调用,都会重新实例化对象;每次请求都创建一个新的对象 builder.RegisterType
().As
().InstancePerLifetimeScope(); //builder.RegisterType
().As
();//.PreserveExistingDefaults(); } } public interface IDependencyRegistrar { void Register(ContainerBuilder builder,ITypeFinder typeFinder); int Order { get; } } public interface ITypeFinder { IList
GetAssemblies(); IEnumerable
FindClassesOfType(Type assignTypeFrom, bool onlyConcreteClasses = true); IEnumerable
FindClassesOfType(Type assignTypeFrom, IEnumerable
assemblies, bool onlyConcreteClasses = true); IEnumerable
FindClassesOfType
(bool onlyConcreteClasses = true); IEnumerable
FindClassesOfType
(IEnumerable
assemblies, bool onlyConcreteClasses = true); }}

  

转载于:https://www.cnblogs.com/yy1234/p/8485269.html

你可能感兴趣的文章
java基础 三 概念和java程序的结构.
查看>>
jedis应用实例
查看>>
Netty实战八之引导
查看>>
如何做一个自己的开源聊天项目?(仿微信)
查看>>
C#异步编程
查看>>
XML的简单读取与写入
查看>>
关于dojo模块化引入包的问题
查看>>
Linux下 网卡测速
查看>>
17秋 软件工程 团队第五次作业 Alpha Scrum1
查看>>
17秋 软件工程 团队第五次作业 Alpha 测试报告
查看>>
js 定时器
查看>>
iOS CoreAnimate 动画实现
查看>>
BZOJ5300 [Cqoi2018]九连环 【dp + 高精】
查看>>
BZOJ4036 [HAOI2015]按位或 【minmax容斥 + 期望 + FWT】
查看>>
splay tree 学习笔记
查看>>
NOIP2017 【游记】
查看>>
BZOJ1452 [JSOI2009]Count 【树套树 (树状数组)】
查看>>
spring源码:Aware接口
查看>>
lazyload的使用方法
查看>>
ingress 代理方式
查看>>