C#通过反射接口可以实例化??
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C#通过反射接口可以实例化??相关的知识,希望对你有一定的参考价值。
Assembly t = Assembly.Load("HelloWorld");Webtest.interface1 obj1 = (Webtest.interface1)t.CreateInstance("Webtest.ReflectTest"); 这是我在网上看到的代码
是的,但是话不能这么说,应该说:接口不可以被实例化,是可以实例化它的实现类,并赋给接口。比如:IInterface1 _interface=new IInterface1() 这是错误的!!但是如果:类:Imp1:IInterface1,即:Imp1是实现了IInterface1接口的,就可以:IInterface1 _interface=new Imp1(); 这是正确的! 如题中,通过Assembly反射,是可以实例化其中对象的! 参考技术A 楼上的意见统一,想补充说下:这个不叫接口实例化,这个叫做将接口的引用 指向它的一个实现类对象。在C#里面他不同于C++,当申明一个引用对象比如 A是个类 你申明A a;他只是 给了一个引用在内存中一个逻辑上叫做托管堆的内存区域上,分配一个引用所需要的内存单元,而不是这个A类的一个实例所需要的内存单元。 参考技术B 反射接口无法实例化。类似的做法是:将接口的引用 指向一个实现类对象。C#不同于C++,当声明一个引用对象比如 A是个类 ,申明A a;
这时只是 给了一个引用在内存中一个逻辑上叫做托管堆的内存区域上,分配一个引用所需要的内存单元,而不是这个A类的一个实例所需要的内存单元。
C# WPF通过反射及Ioc容器综合实例
概述
这节主要通过发射+Caliburn.Micro自带的ioc容器实现加载并显示其它项目中的界面.实现效果如下:
具体实现
-. ①首先在引导程序页面通过发射加载类库,并将视图注入ioc容器,这里为了实现解耦合注入了ICommonBasePage接口类型:
private void ExternalLoad()
//container = new SimpleContainer();
//container.Instance(container);
var asmPath = Assembly.GetAssembly(typeof(HelloBootstrapper)).Location;
var path = Directory.GetParent(asmPath).FullName;
string filePath = Path.Combine(path, "PluginTest.dll");
//var assembly = Assembly.GetAssembly(typeof(PageBase));
//container.AllTypesOf<ShellViewModel>(assembly);
var assembly = Assembly.LoadFile(filePath);
assembly.GetTypes()
.Where(type => type.IsClass)
.Where(type => type.Name.EndsWith("ViewModel"))
.ToList()
.ForEach(viewModelType => container.RegisterPerRequest(
typeof(ICommonBasePage), viewModelType.ToString(), viewModelType));
//container
// .Singleton<IWindowManager, WindowManager>()
// .Singleton<IEventAggregator, EventAggregator>()
// .PerRequest<MainWindowViewModel>();
接口定义在单独的类库中:
public interface ICommonBasePage
void ShowNewWindow();
加入程序集到IEnumerable<Assembly>
protected override IEnumerable<Assembly> SelectAssemblies()
string filePath = Path.Combine(Directory.GetCurrentDirectory(), "PluginTest.dll");
var assembly = Assembly.LoadFile(filePath);
return new[] Assembly.GetExecutingAssembly(), assembly ;
-.②PluginTest是要加载显示的项目:
PluginTestViewModel.cs源码如下:
using CommonShareBase;
using System.ComponentModel.Composition;
using System.Windows;
namespace PluginTest
//[PluggablePart(name: "PluginTestViewModel", desciption: "This is PluginTestViewModel content pluggable part.", displayNameResourceKey: "PluginTestViewModel")]
//[Export("PluginTestViewModel", typeof(IPluggablePart))]
//[PartCreationPolicy(CreationPolicy.Shared)]
///也可以这样
[Export(typeof(ICommonBasePage))]
public class PluginTestViewModel : ICommonBasePage
//public void PreparePart(IPluggablePartContext pluggablePartContext)
//
// //throw new NotImplementedException();
//
public void ShowNewWindow()
MessageBox.Show("dotnet讲堂");
PluginTestView.xaml代码如下:
<UserControl x:Class="PluginTest.PluginTestView"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:local="clr-namespace:PluginTest"
mc:Ignorable="d"
d:DesignHeight="450" d:DesignWidth="800">
<Grid ShowGridLines="True">
<Grid.RowDefinitions>
<RowDefinition Height="*" />
<RowDefinition Height="*" />
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="*"/>
<ColumnDefinition Width="*"/>
</Grid.ColumnDefinitions>
<Button Name="ShowNewWindow" Content="ShowNewWindow" Grid.Row="0" Grid.Column="0" FontSize="35" Background="LightBlue"/>
</Grid>
</UserControl>
-. ③在调用的地方先定义ICommonBasePage 类型的VM:
public ICommonBasePage PluginTestViewModel get; set;
按钮事件里面从ioc获取视图并给界面赋值:
public void IocTest4()
//通过接口实现解耦合
var shellVM = IoC.Get<ICommonBasePage>();
//shellVM.ShowNewWindow();
PluginTestViewModel = shellVM;
ActivateItemAsync(PluginTestViewModel);
源码下载
链接:https://pan.baidu.com/s/1wtNduWVUiFV46WwWE4hrEw
提取码:6666
以上是关于C#通过反射接口可以实例化??的主要内容,如果未能解决你的问题,请参考以下文章