首页 > 编程语言 > 详细

Introduction to dependency injection with unityContainer

时间:2015-02-16 06:47:36      阅读:229      评论:0      收藏:0      [点我收藏+]

/* By Dylan SUN */

This article is just a simple introduction to unityContainer.
If you have already used unityContainer as a dependency injection or IoC (Inversion of control) library, this article is not for you.

As you know, dependency injection is a design pattern to prevent the code coupling.

For example, you access class CA’s method MA in several places in your application. If one day you need to use class CB instead of class CA. You need to replace all the code referencing class CA with class CB.
But if you use dependency injection, you just need to register the interface and its implementation class once. You can resolve the interface when you need to access method CA.

Here is an sample usage of unityContainer:

Firstly, create an instance of UnityContainer.

//register interface and its implementation
IUnityContainer container = new UnityContainer();

Register the interface and its implementation class.

container.RegisterType<IConfigurationReader, ConfigurationReader>();

Resolve the interface.

var configurationReader = container.Resolve<IConfigurationReader>();

Access to method :

var value = configurationReader.GetAppSettings("hello");

In this way, you won’t need to create any instance of a specific class. The code is more maintainable.

I hope you find this article helpful!

Introduction to dependency injection with unityContainer

原文:http://blog.csdn.net/garcon1986/article/details/43849327

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!