我有一些 C# 代码在 mono 和 Microsoft 的 .net 编译器下都可以正常编译,但只能在 mono 上运行。错误消息是(我添加的换行符)
Unhandled Exception: System.TypeLoadException:
Could not load type 'Hasse.Groups.Heavy.Product.PowerGroup`1'
from assembly 'Hasse, Version=1.0.x.y, Culture=neutral, PublicKeyToken=null'
because it has recursive generic definition.
该类型实际上有一个递归的泛型定义,所以我的问题是:为什么它适用于单声道?[代码运行并产生预期结果]
完整的源代码在这里:https ://github.com/miniBill/Hasse
仍然崩溃的简化代码在这里:
public class Group<T> : IWrappableGroup<WrapperGroup<T>> {}
public class WrapperElement<T> {}
public interface IWrappableGroup<U> {}
public class WrapperGroup<T> : Group<WrapperElement<T>> {}
class MainClass {
public static void Main(string[] args){
var ng = new Group<object>();
}
}
这是它适用于单声道的证明:http: //ideone.com/ZvA3I