- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
此代码有效,但效率低下,因为它会重复查找 ignored
字典。如何使用字典TryGetValue()
LINQ 语句中的方法使其更高效?
IDictionary<int, DateTime> records = ...
IDictionary<int, ISet<DateTime>> ignored = ...
var result = from r in records
where !ignored.ContainsKey(r.Key) ||
!ignored[r.Key].Contains(r.Value)
select r;
最佳答案
(我的回答涉及使用 TrySomething( TInput input, out TOutput value )
方法的一般情况(如 IDictionary.TryGetValue( TKey, out TValue )
和 Int32.TryParse( String, out Int32 )
,因此它不会直接用 OP 自己的示例代码回答 OP 的问题。我在这里发布这个答案是因为这个 QA 目前是谷歌的最高结果“linq trygetvalue”截至 2019 年 3 月)。
使用扩展方法语法时,至少有这两种方法。
1. 使用 C# 值元组、System.Tuple
或匿名类型:
在 TrySomething
调用中首先调用 Select
方法,并将结果存储在 C# 7.0 中的值元组中(或旧版本 C# 中的匿名类型,请注意,值元组应该是首选,因为它们的开销较低):
使用 C# 7.0 值元组(推荐):
// Task: Find and parse only the integers in this input:
IEnumerable<String> input = new[] { "a", "123", "b", "456", ... };
List<Int32> integersInInput = input
.Select( text => Int32.TryParse( text, out Int32 value ) ? ( ok: true, value ) : ( ok: false, default(Int32) ) )
.Where( t => t.ok )
.Select( t => t.value )
.ToList();
value
变量在整个
.Select
lambda 的范围内,因此三元表达式变得不必要,如下所示:
// Task: Find and parse only the integers in this input:
IEnumerable<String> input = new[] { "a", "123", "b", "456", ... };
List<Int32> integersInInput = input
.Select( text => ( ok: Int32.TryParse( text, out Int32 value ), value ) ) // much simpler!
.Where( t => t.ok )
.Select( t => t.value )
.ToList();
// Task: Find and parse only the integers in this input:
IEnumerable<String> input = new[] { "a", "123", "b", "456", ... };
List<Int32> integersInInput = input
.Select( text => Int32.TryParse( text, out Int32 value ) ? new { ok = true, value } : new { ok = false, default(Int32) } )
.Where( t => t.ok )
.Select( t => t.value )
.ToList();
Tuple<T1,T2>
:
// Task: Find and parse only the integers in this input:
IEnumerable<String> input = new[] { "a", "123", "b", "456", ... };
List<Int32> integersInInput = input
.Select( text => Int32.TryParse( text, out Int32 value ) ? Tuple.Create( true, value ) : Tuple.Create( false, default(Int32) ) )
.Where( t => t.Item1 )
.Select( t => t.Item2 )
.ToList();
SelectWhere
,它将其简化为一次调用。它应该在运行时更快,尽管它不重要。
delegate
参数的方法声明自己的
out
类型来工作。 Linq 默认不支持这些,因为
System.Func
不接受
out
参数。但是,由于委托(delegate)在 C# 中的工作方式,您可以将
TryFunc
与任何与其匹配的方法一起使用,包括
Int32.TryParse
、
Double.TryParse
、
Dictionary.TryGetValue
等等...
Try...
方法,只需定义一个新的委托(delegate)类型并为调用者提供一种指定更多值的方法。
public delegate Boolean TryFunc<T,TOut>( T input, out TOut value );
public static IEnumerable<TOut> SelectWhere<T,TOut>( this IEnumerable<T> source, TryFunc<T,TOut> tryFunc )
{
foreach( T item in source )
{
if( tryFunc( item, out TOut value ) )
{
yield return value;
}
}
}
// Task: Find and parse only the integers in this input:
IEnumerable<String> input = new[] { "a", "123", "b", "456", ... };
List<Int32> integersInInput = input
.SelectWhere( Int32.TryParse ) // The parse method is passed by-name instead of in a lambda
.ToList();
public static IEnumerable<TOut> SelectWhere<T,TOut>( this IEnumerable<T> source, Func<T,(Boolean,TOut)> func )
{
foreach( T item in source )
{
(Boolean ok, TOut output) = func( item );
if( ok ) yield return output;
}
}
// Task: Find and parse only the integers in this input:
IEnumerable<String> input = new[] { "a", "123", "b", "456", ... };
List<Int32> integersInInput = input
.SelectWhere( text => ( Int32.TryParse( text, out Int32 value ), value ) )
.ToList();
out Type name
表达式中声明的变量用于其他元组值。
关于linq - 在 LINQ 中使用 TryGetValue()?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3280589/
我在 F# 中的字典上使用 TryGetValue,它返回一个对象 bool * Dictionary 我已经用谷歌搜索了几个小时,但是我如何访问这个对象的 bool 组件,以便我可以检查它是否返回了
所以,我有一个 Dictionary Foo 在一个线程中我有: void Thread1() { ... if (!Foo.TryGetValue(key, out v)) { Fo
我正在尝试从字典中获取值(JSON 反序列化)并将其解析为 long。 当我快速查看变量时,我发现没有“M”作为下面给出的输出参数的一部分 但是当我点击这个值时,我发现“M”被添加到给定的值中 这里的
我有一个字典,它将字符串映射到这样的对象:Dictionary myDic; 我事先知道对象的类型是基于字符串的,但我的问题是我应该使用 TryGetValue,还是使用 try、catch 语句直接
将以下代码用于展览 A: string sql; if (!GetQueries.TryGetValue(type.TypeHandle, out sql)) Dictionary 的文档说如果找不到
TryGetValue 是否改变输入参数? 在使用 TryGetValue 时,我倾向于这样做: Dictionary myDic; long lValue = -1; long lTemp1; if
private Dictionary> events = new Dictionary>(); internal Bag GetEventList() where T:class { Ty
我完全是个 C# 菜鸟,无法弄清楚为什么相同的方法以不同的方式工作。我正在制作一个简单的电子表格应用程序,并使用单元格字典,其中键是字符串名称,值是 Cell 对象: public struct Ce
我环顾四周,看到很多关于修改 GetHashCode() 的引用资料和玩ContainsKey()的东西和 TryGetValue() - 但所有这些问题和示例都与一些晦涩的用户特定 key 有关。
我正在编写一个需要优化的计算量大的应用程序(NLP 机器学习任务)。 因为我的代码有很多 for 循环,所以我使用了 Parallel.For(和变体)来并行化最外层的循环。我还使用数组和 Dicti
我有这个简单的例子: using System; using System.Collections.Generic; namespace ConsoleApplication1 { class
private object lockObj = new object(); private Dictionary dict = new Dictionary(); public string Get
这个问题不太可能帮助任何 future 的访问者;它只与一个小的地理区域、一个特定的时间点或一个非常狭窄的情况有关,这些情况并不普遍适用于互联网的全局受众。为了帮助使这个问题更广泛地适用,visit
我正在努力 myDic.TryGetValue("用户名", out user.用户名); 但它不起作用。 这不可能吗? 最佳答案 不,来自文档: “属性不是变量,因此不能作为输出参数传递。” htt
我分析了我的应用程序并运行了一些性能测试,这让我相信以下 if-lock-if 安排: private float GetValue(int id) { float value; if
此代码有效,但效率低下,因为它会重复查找 ignored字典。如何使用字典TryGetValue() LINQ 语句中的方法使其更高效? IDictionary records = ... IDict
所以,给定下面的代码 type MyClass () = let items = Dictionary() do items.Add ("one",1) items.Add (
我有一个类型的字典 Dictionary 尝试从中读取值时,我无法使用这种方式 if (myDict.TryGetValue(1, out (float tupleItem1, float tuple
我有以下ConcurrentDictionary: ConcurrentDictionary sessions; 我知道 sessions.TryGetValue(key, out session)
我不能在匿名类型的 linq 表达式中使用字典中的 TryGetValue()。 Dictionary dict = new Dictionary() { {"1", "one
我是一名优秀的程序员,十分优秀!