我正在使用一些使用自定义属性进行验证的代码。我试图覆盖子类中的基类的验证属性,因此它在我们的通用控件中使用相同的名称进行绑定,但没有验证属性。
public interface IBaseClass
{
[TestAttribute]
string Id { get; set; }
}
public interface IChildClass : IBaseClass
{
new string Id { get; set; }
}
public class BaseClass : IBaseClass
{
public string Id { get; set; }
}
public class ChildClass : BaseClass, IChildClass
{
public new string Id { get; set; }
}
我的问题是,当我们的验证框架使用反射来获取值时,它将返回子值而不是基值。
例如,
使用PropertyInfo
BaseClass.Id
,我会收到ChildClass.Id
的值。
在查看BaseClass.Id
类型的对象时,是否可以使用反射获取ChildClass.Id
而不是ChildClass
?
以下是一些示例代码,您可以将其粘贴到命令行应用程序中以查看我要执行的操作。我在评论中添加了评论与预期的内容。
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Starting");
ChildClass c = new ChildClass();
c.Id = "B";
foreach (Type interfaceType in GetInterfaces<IChildClass>())
{
foreach (PropertyInfo p in interfaceType.GetProperties())
{
Attribute[] attribs = Attribute.GetCustomAttributes(p, typeof(TestAttribute));
foreach (TestAttribute v in attribs)
{
if (v != null)
{
object val = p.GetValue(c, new object[0]);
// Put breakpoint here
v.Validate(val);
// p.ReflectedType is IBaseClass, so I would expect
// val to be BaseClass.Id (null), however it is instead
// returning me ChildClass.Id ("B")
// Can I use reflection to get BaseClass.Id here,
// without hardcoding any types?
}
}
}
}
Console.ReadLine();
}
private static IList<Type> GetInterfaces<B>()
{
List<Type> interfaces = new List<Type>();
interfaces.Add(typeof(B));
Type[] values = typeof(B).GetInterfaces();
foreach (Type t in values)
{
interfaces.Add(t);
}
return interfaces;
}
}
public interface IBaseClass
{
[TestAttribute]
string Id { get; set; }
}
// for sample purposes, removing inheritance from IBaseClass here
// gets me the desired result, however this is not an option in
// the application I am working on. This base interface must remain on the
// child interface
public interface IChildClass : IBaseClass
{
new string Id { get; set; }
}
public class BaseClass : IBaseClass
{
public string Id { get; set; }
}
public class ChildClass : BaseClass, IChildClass
{
public new string Id { get; set; }
}
public class TestAttribute : Attribute
{
public TestAttribute() { }
public void Validate(object value)
{
if (value == null)
return;
}
}
注意:问题经历了几次迭代,因为我试图对我正在研究的代码框架进行排序,并重现了我想要做的一个简单示例。我想我终于有了一个很好的工作代码示例,展示了我得到的与我想要的东西。
答案 0 :(得分:6)
所有这些具有反射和属性以及诸如红色鲱鱼的东西。根本问题是你对接口的工作方式有一些错误的看法。让我大大简化你的计划:
using System;
public interface IBaseClass
{
string Id { get; set; }
}
public interface IChildClass : IBaseClass
{
new string Id { get; set; }
}
public class BaseClass : IBaseClass
{
public string Id { get; set; }
}
public class ChildClass : BaseClass, IChildClass
{
public new string Id { get; set; }
}
public class Program
{
static public void Main(string[] args)
{
ChildClass c = new ChildClass();
((BaseClass)c).Id = "Base";
c.Id = "Child";
Console.WriteLine( ((BaseClass)c).Id); // Base
Console.WriteLine( ((ChildClass)c).Id); // Child
Console.WriteLine( ((IBaseClass)c).Id); // Child !!!
Console.WriteLine( ((IChildClass)c).Id); // Child
}
}
你的问题是你认为第三行应该说Base
,但这是错误的。应该说Child
。
当您说class ChildClass : BaseClass, IChildClass
时,您正在说,请向ChildClass
IChildClass
所需成员找到IChildClass
属性的最佳绑定。 {什么{ {1}}要求?它需要两个名为Id 的字符串属性。两者的最佳绑定是ChildClass.Id
。
因此,如果您有IBaseClass.Id
手中的属性信息并询问该值,则会获得Child
,因为ChildClass
中的,&#39最好的约束力。
现在让它变得更有趣。
using System;
public interface IB
{
string P { get; }
}
public interface IC : IB
{
new string P { get;}
}
public class B : IB
{
public string P => "B";
}
public class C : B, IC
{
public new string P => "C";
}
public class D1 : C // NO IC
{
public new string P => "D1";
}
public class D2 : C, IC // YES IC
{
public new string P => "D2";
}
public class Program
{
static public void Main(string[] args)
{
var d1 = new D1();
var d2 = new D2();
Console.WriteLine(((B)d1).P);
Console.WriteLine(((C)d1).P);
Console.WriteLine(((IB)d1).P);
Console.WriteLine(((IC)d1).P);
Console.WriteLine(((D1)d1).P);
Console.WriteLine(((B)d2).P);
Console.WriteLine(((C)d2).P);
Console.WriteLine(((IB)d2).P);
Console.WriteLine(((IC)d2).P);
Console.WriteLine(((D2)d2).P);
}
}
你能预测一下这个程序的行为吗?
这是C#中最微妙的规则之一:当您在类声明中明确地放置接口时,该接口的每个成员都会重新绑定到最佳值。
答案 1 :(得分:0)
其实我并不能理解你的问题。 刚尝试使用控制台应用程序中的代码,我得到了&#34; val&#34;等于&#34; B&#34; (这是BaseClass.Id)。
在这种情况下,结果应该是BaseClass.Id。你给的名字&#34; Id&#34;在这里很困惑。如果你在ChildClass中使用不同的名字,你会发现一切都毫无疑问。我想在此列出一些要点:
c.GetType().GetInterfaces()