gpt4 book ai didi

C# 将 System.Func 转换为 System/Func

转载 作者:太空宇宙 更新时间:2023-11-03 17:24:00 26 4
gpt4 key购买 nike

我用谷歌搜索但找不到满意的答案。我基本上是在尝试让这段代码工作:

public List<WordEntry> WordDataBase = new List<WordEntry>();
public List<CharacterEntry> CharacterDataBase = new List<CharacterEntry>();

public List<Entry> SelectWhere<T>(System.Func<T, bool> predicate) where T : Entry
{
if (typeof(T) == typeof(WordEntry))
return WordDataBase.Where(predicate);
else if (typeof(T) == typeof(CharacterEntry))
return CharacterDataBase.Where(predicate);
else
return null;
}

在此示例中,WordEntry 和 CharacterEntry 均派生自 Entry。我收到编译器错误:

Error   CS1503  Argument 2: cannot convert from 'System.Func<T, bool>' to 'System.Func<WordEntry, int, bool>'   

Error   CS1503  Argument 2: cannot convert from 'System.Func<T, bool>' to 'System.Func<CharacterEntry, int, bool>'

希望你能帮我解决这个问题。提前致谢

最佳答案

基本上,您只需要转换 - 语言规则不允许编译器采用 if在考虑所涉及的类型时考虑声明。请注意,您需要调用 ToList<Entry>() , 指定类型参数以避免获得 List<WordEntry>List<CharacterEntry> :

public List<Entry> SelectWhere<T>(Func<T, bool> predicate) where T : Entry
{
if (typeof(T) == typeof(WordEntry))
return WordDataBase
.Where((Func<WordEntry, bool>) predicate)
.ToList<Entry>();
else if (typeof(T) == typeof(CharacterEntry))
return CharacterDataBase
.Where((Func<CharacterEntry, bool>) predicate)
.ToList<Entry>();
else
return null;
}

不过,我建议您不要使用通用方法,而应该只使用两种不同的方法。鉴于它仅适用于两种非常特定的类型,因此感觉它不是真正的通用方法。

关于C# 将 System.Func<Tderived, bool> 转换为 System/Func<Tbase, bool>,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42253195/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com