我有这样的代码
public class SomeClass
{
private static int staticField = 10;
}
代码永远不会被执行,而staticField的默认值为0。 此外,代码导致MVVMlight的SimpleIoc使用如下代码抛出异常:
SimpleIoc.Default.Register<SomeClass>();
上面的代码会导致MVVMLight抛出异常
Cannot build instance: Multiple constructors found but none marked with PreferredConstructor.
这很离奇。 我正在为Windows 8使用Win8 RTM x64 + VS2012 Express。
答案 0 :(得分:12)
这绝对是MVVMLight的SimpleIoc中的一个错误。我已经用LinqPad尝试了它,问题是当你向类中添加静态字段时,字段初始化程序会添加一个静态字符。
结果是SomeClass类有两个用于SimpleIoc的ctors,导致你描述的异常。
解决方法是在类中添加默认构造函数并使用PreferredConstructorAttribute
进行修饰,但这会导致对SimpleIoc的依赖。
其他解决方案是将静态字段更改为常量值。
public class SomeClass
{
private const int staticField = 10;
}
或使用Register方法的重载为实例创建提供工厂方法。
SimpleIoc.Default.Register<SomeClass>(() => new SomeClass())
我在CodePlex上的MVVM Light项目中提交了bug report
LinqPad(测试代码):
void Main()
{
var x = GetConstructorInfo(typeof(SomeClass));
x.Dump();
x.IsStatic.Dump();
}
public class PreferredConstructorAttribute : Attribute{
}
public class SomeClass{
private static int staticField = 10;
}
private ConstructorInfo GetConstructorInfo(Type serviceType)
{
Type resolveTo = serviceType;
//#if NETFX_CORE
var constructorInfos = resolveTo.GetTypeInfo().DeclaredConstructors.ToArray();
constructorInfos.Dump();
//#else
// var constructorInfos = resolveTo.GetConstructors();
//constructorInfos.Dump();
//#endif
if (constructorInfos.Length > 1)
{
var preferredConstructorInfos
= from t in constructorInfos
//#if NETFX_CORE
let attribute = t.GetCustomAttribute(typeof (PreferredConstructorAttribute))
//#else
// let attribute = Attribute.GetCustomAttribute(t, typeof(PreferredConstructorAttribute))
//#endif
where attribute != null
select t;
preferredConstructorInfos.Dump();
var preferredConstructorInfo = preferredConstructorInfos.FirstOrDefault ( );
if (preferredConstructorInfo == null)
{
throw new InvalidOperationException(
"Cannot build instance: Multiple constructors found but none marked with PreferredConstructor.");
}
return preferredConstructorInfo;
}
return constructorInfos[0];
}
// Define other methods and classes here
问题在于
行var constructorInfos = resolveTo.GetTypeInfo().DeclaredConstructors.ToArray();
返回一个带有2个ConstructorInfos的数组,这两个数组都是在没有PreferredConstructorAttribute的情况下定义的,这会导致异常。