- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我正在尝试添加到字典中,其中值是具有两个泛型的类。这两个泛型必须派生自一个抽象类 BaseEntity
:
internal abstract class BaseEntity
{
...
}
internal class DataEtlModelRegistration<T, TResult> where T : BaseEntity where TResult : BaseEntity
{
...
}
internal class DataEtlContext : IDataEtlContext
{
private readonly Dictionary<Type, DataEtlModelRegistration<BaseEntity, BaseEntity>> models = new Dictionary<Type, DataEtlModelRegistration<BaseEntity, BaseEntity>>();
public void RegisterModelType<T, TResult>() where T : BaseEntity where TResult : BaseEntity
{
models.Add(typeof(T), new DataEtlModelRegistration<T, TResult>());
}
}
我希望这是有效的,因为 RegisterModelType
方法确保 T
和 TResult
都派生自 BaseEntity
根据类型约束的性质分类。
但是,我收到以下错误:
Argument 2: cannot convert from '...DataEtlModelRegistration<T, TResult>' to '...DataEtlModelRegistration<BaseEntity, BaseEntity>'.
错误 lint 在以下代码上:
new DataEtlModelRegistration<T, TResult>()
谁能解释这是为什么,并提出可能的解决方案?
最佳答案
您可能想查看 co- and contravariance .
您还没有向我们展示您的 DataEtlModelRegistration<T, TResult>
的定义类,但让我们想象它有一个带有签名的方法:
void Accept(T t);
(任何接受 T
作为参数的方法都可以)。
现在让我们也想象一下DerivedEntity
继承自 BaseEntity
.现在让我们把我们的宇宙变成一个models.Add(typeof(T), new DataEtlModelRegistration<T, TResult>());
是有效代码并调用 RegisterModelType<DerivedEntity, TAnything>
, 其中TAnything
可以是任何派生自 BaseEntity
的东西.
所以类型为 DataEtlModelRegistration<DerivedEntity, TAnything>
的对象现在在关键字 typeof(DerivedEntity)
下的字典中.让我们尝试提取它:
DataEtlModelRegistration<BaseEntity, BaseEntity> model = models[typeof(DerivedEntity)];
现在,自 entity
类型为 DataEtlModelRegistration<BaseEntity, BaseEntity>
,这段代码应该可以工作(前提是 BaseEntity
有一个可用的默认构造函数):
model.Accept(new BaseEntity());
砰,类型系统坏了。你已经通过了 BaseEntity
到接受 DerivedEntity
的方法作为参数。 BaseEntity
不是 DerivedEntity
,你不能那样做。
因此,泛型类型在默认情况下是不变的。基本上这意味着,例如List<DerivedEntity>
不是 List<BaseEntity>
,因为您不应该添加任何 BaseEntity
到 DerivedEntity
的列表秒。因此,如果您的类包含接受 T
的方法(或 TResult
,适用相同的逻辑)作为参数,您不能做您想做的事。
但是,如果没有这样的方法,那么您可以使用接口(interface)使您的类型协变:
interface IModelRegistration<out T, out TResult> where T : BaseEntity where TResult : BaseEntity
{
...
}
internal class DataEtlModelRegistration<T, TResult> : IModelRegistration<T, TResult> where T : BaseEntity where TResult : BaseEntity
{
...
}
基本上你是在告诉编译器“嘿,这个接口(interface)永远不会接受任何泛型类型的对象,它只返回它们”。如果接口(interface) IModelRegistration
,该代码将无法编译包含一个带有 T
的方法或 TResult
作为它的参数。现在可以合法地说:
private readonly Dictionary<Type, IModelRegistration<BaseEntity, BaseEntity>> models = new Dictionary<Type, IModelRegistration<BaseEntity, BaseEntity>>();
models.Add(typeof(DerivedEntity), new DataEtlModelRegistration<DerivedEntity, DerivedEntity>());
您将能够从字典中提取一个对象作为 IModelRegistration
的实例。界面。
IModelRegistration<BaseEntity, BaseEntity> model = models[typeof(DerivedEntity)];
现在您无法破坏类型系统,因为我们知道一个事实 IModelRegistration
接口(interface)没有任何方法可以接受其任何类型参数的对象。
您还可以查看 this question ,我在其中解释了逆变的工作原理。
关于c# - 使用泛型方法将继承的泛型类添加到字典,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57005118/
我想了解 Ruby 方法 methods() 是如何工作的。 我尝试使用“ruby 方法”在 Google 上搜索,但这不是我需要的。 我也看过 ruby-doc.org,但我没有找到这种方法。
Test 方法 对指定的字符串执行一个正则表达式搜索,并返回一个 Boolean 值指示是否找到匹配的模式。 object.Test(string) 参数 object 必选项。总是一个
Replace 方法 替换在正则表达式查找中找到的文本。 object.Replace(string1, string2) 参数 object 必选项。总是一个 RegExp 对象的名称。
Raise 方法 生成运行时错误 object.Raise(number, source, description, helpfile, helpcontext) 参数 object 应为
Execute 方法 对指定的字符串执行正则表达式搜索。 object.Execute(string) 参数 object 必选项。总是一个 RegExp 对象的名称。 string
Clear 方法 清除 Err 对象的所有属性设置。 object.Clear object 应为 Err 对象的名称。 说明 在错误处理后,使用 Clear 显式地清除 Err 对象。此
CopyFile 方法 将一个或多个文件从某位置复制到另一位置。 object.CopyFile source, destination[, overwrite] 参数 object 必选
Copy 方法 将指定的文件或文件夹从某位置复制到另一位置。 object.Copy destination[, overwrite] 参数 object 必选项。应为 File 或 F
Close 方法 关闭打开的 TextStream 文件。 object.Close object 应为 TextStream 对象的名称。 说明 下面例子举例说明如何使用 Close 方
BuildPath 方法 向现有路径后添加名称。 object.BuildPath(path, name) 参数 object 必选项。应为 FileSystemObject 对象的名称
GetFolder 方法 返回与指定的路径中某文件夹相应的 Folder 对象。 object.GetFolder(folderspec) 参数 object 必选项。应为 FileSy
GetFileName 方法 返回指定路径(不是指定驱动器路径部分)的最后一个文件或文件夹。 object.GetFileName(pathspec) 参数 object 必选项。应为
GetFile 方法 返回与指定路径中某文件相应的 File 对象。 object.GetFile(filespec) 参数 object 必选项。应为 FileSystemObject
GetExtensionName 方法 返回字符串,该字符串包含路径最后一个组成部分的扩展名。 object.GetExtensionName(path) 参数 object 必选项。应
GetDriveName 方法 返回包含指定路径中驱动器名的字符串。 object.GetDriveName(path) 参数 object 必选项。应为 FileSystemObjec
GetDrive 方法 返回与指定的路径中驱动器相对应的 Drive 对象。 object.GetDrive drivespec 参数 object 必选项。应为 FileSystemO
GetBaseName 方法 返回字符串,其中包含文件的基本名 (不带扩展名), 或者提供的路径说明中的文件夹。 object.GetBaseName(path) 参数 object 必
GetAbsolutePathName 方法 从提供的指定路径中返回完整且含义明确的路径。 object.GetAbsolutePathName(pathspec) 参数 object
FolderExists 方法 如果指定的文件夹存在,则返回 True;否则返回 False。 object.FolderExists(folderspec) 参数 object 必选项
FileExists 方法 如果指定的文件存在返回 True;否则返回 False。 object.FileExists(filespec) 参数 object 必选项。应为 FileS
我是一名优秀的程序员,十分优秀!