gpt4 book ai didi

c# - 内存表情的最快方法

转载 作者:行者123 更新时间:2023-11-30 16:07:59 25 4
gpt4 key购买 nike

我有一个函数,将输入 Expression 转换为输出 BlockExpression。所以我写了这段代码:

    private static readonly Dictionary<Expression, BlockExpression> MemberMemoizeDictionary = new Dictionary<Expression, BlockExpression>(); 
private static BlockExpression CreateBody<TProperty>(CustomComparer<T> comparer, Expression<Func<T, TProperty>> member, bool createLabel)
where TProperty : IComparable<TProperty>, IComparable
{
BlockExpression expression;
if (MemberMemoizeDictionary.TryGetValue(member, out expression))
{
return expression;
}

MemberExpression memberExpression = (MemberExpression) (member.Body is MemberExpression ? member.Body : ((UnaryExpression)member.Body).Operand);
BlockExpression result = comparer.CreateCompareTo<TProperty>(memberExpression, createLabel);
MemberMemoizeDictionary[member] = result;
return result;
}

但它不起作用。

我在想 Expressions 是不可变的,所以我可以将它们用作字典键,但我发现这不是真的。

解决这个问题最简单和最快的方法是什么?它始终是单个成员表达式,由于值类型属性的装箱,可能具有 convert

最佳答案

I was thinking that Expressions are immutable

正确

但请注意,每次都会重新生成表达式!

public static Expression Exp = null;

public static void Foo(Expression<Func<bool>> exp)
{
if (Exp == null)
{
Exp = exp;
}
else
{
Console.WriteLine(object.ReferenceEquals(Exp, exp));
}

}

for (int i = 0; i < 2; i++)
{
Foo(() => true);
}

False

遗憾的是,C# 编译器并未“保留”“文字”表达式。它甚至写在 MSDN 的某处。

关于c# - 内存表情的最快方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29993464/

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