- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我正在尝试做一些类似 CommandBus 的事情,在处理命令时应该调用一个方法。我将这些存储在字典中
private readonly ConcurrentDictionary<Type, Action<BaseCommand>> _commandHandlers = new ConcurrentDictionary<Type, Action<BaseCommand>>();
因此,当处理 StartCommand 类型的命令时,我会从该字典中找到要执行的操作。
StartCommand 应该调用的方法如下所示。
public void StartCommand(StartCommand command)
StartCommand继承了BaseCommand
我正在尝试用这段代码填充词典。
var commands = new List<Type>();
//-- Get all commands that is defined in assembly
var tmpAssembly = typeof(CommandBus).Assembly;
commands.AddRange(tmpAssembly.GetTypes().Where(t => t.BaseType == typeof(BaseCommand)));
commands.ForEach(c =>
{
var methodInfo = instance.GetType().GetMethods().SingleOrDefault(m => m.GetParameters().Count() == 1
&& m.GetParameters().Any(p => p.ParameterType == c));
if (methodInfo != null)
{
var action = (Action<BaseCommand>)Delegate.CreateDelegate(typeof(Action<BaseCommand>), instance, methodInfo);
if (!_commandHandlers.TryAdd(c, action))
throw new ArgumentException(string.Format("An CommandHandler is already registered for the command: '{0}'. Only one CommandHandler can be registered for a command", c.Name));
}
});
当我运行这段代码时,出现以下异常:无法绑定(bind)到目标方法,因为它的签名或安全透明度与委托(delegate)类型不兼容。
这当然是正确的,因为我的方法不采用 BaseCommand 作为参数,而是采用 StartCommand
但是有什么方法可以创建 Action 吗?我已经用 Expression 查看了一些示例,但我没能弄明白。
提前致谢
最佳答案
我发现这个问题有点令人困惑,原因如下:
StartCommand
本身应该需要将一个不同的 StartCommand
实例传递给它。我认为处理这类事情的更常用方法是让类型实现一个接口(interface),或者至少使用相同的方法签名,即使用基类类型作为参数类型而不是实现类的类型。
就是说,如果您真的想按照您描述的方式进行操作,那么您使用 Expression
类就走在了正确的轨道上。您可以创建一个表达式,该表达式将显式转换为调用成员所需的类型,以便委托(delegate)实例本身可以接收基类型。
例如:
/// <summary>
/// Create an Action<T> delegate instance which will call the
/// given method, using the given instance, casting the argument
/// of type T to the actual argument type of the method.
/// </summary>
/// <typeparam name="T">The type for the delegate's parameter</typeparam>
/// <param name="b">The instance of the object for the method call</param>
/// <param name="miCommand">The method to call</param>
/// <returns>A new Action<T></returns>
private static Action<T> CreateAction<T>(B b, MethodInfo miCommand)
{
// Create the parameter object for the expression, and get
// the type needed for it
ParameterExpression tParam = Expression.Parameter(typeof(T));
Type parameterType = miCommand.GetParameters()[0].ParameterType;
// Create an expression to cast the parameter to the correct type
// for the call
Expression castToType = Expression.Convert(tParam, parameterType, null);
// Create the delegate itself: compile a lambda expression where
// the lambda calls the method miCommand using the instance b and
// passing the result of the cast expression as the argument.
return (Action<T>)Expression.Lambda(
Expression.Call(
Expression.Constant(b, b.GetType()),
miCommand, castToType),
tbParam).Compile();
}
你可以这样使用:
var action = CreateAction<BaseCommand>(instance, methodInfo);
if (!_commandHandlers.TryAdd(c, action))
throw new ArgumentException(string.Format("An CommandHandler is already registered for the command: '{0}'. Only one CommandHandler can be registered for a command", c.Name));
将类型名称 B
替换为您实际的 Controller 类型。不幸的是,您的代码示例没有显示 instance
的声明,所以我不能在这里使用真实的类型名称。
当然,您必须小心确保在实际调用委托(delegate)时传递正确类型的实例!上面的代码就像进行强制转换,如果类型实际上不能强制转换为方法的参数类型,就会像强制转换一样抛出异常。
关于c# - 创建 Action<T>,其中 T 是方法参数的基类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27382642/
我对这个错误很困惑: Cannot implicitly convert type 'System.Func [c:\Program Files (x86)\Reference Assemblies\
考虑这段代码: pub trait Hello { fn hello(&self); } impl Hello for Any { fn hello(&self) {
问题很简单。是否可以构造这样一个类型 T,对于它下面的两个变量声明会产生不同的结果? T t1 = {}; T t2{}; 我已经研究 cppreference 和标准一个多小时了,我了解以下内容:
Intellij idea 给我这个错误:“Compare (T, T) in Comparator cannot be applied to (T, T)” 对于以下代码: public class
任何人都可以告诉我 : n\t\t\t\t\n\t\t\t 在以下来自和 dwr 服务的响应中的含义和用途是什么. \r\n\t\t\t \r\n\t\t\t
让 T 成为一个 C++ 类。 下面三个指令在行为上有什么区别吗? T a; T a(); T a = T(); T 为不带参数的构造函数提供了显式定义这一事实是否对问题有任何改变? 后续问题:如果
Rust中的智能指针是什么 智能指针(smart pointers)是一类数据结构,是拥有数据所有权和额外功能的指针。是指针的进一步发展 指针(pointer)是一个包含内存地
比如我有一个 vector vector > v={{true,1},{true,2},{false,3},{false,4},{false,5},{true,6},{false,7},{true,8
我有一个来自 .xls 电子表格的数据框,我打印了 print(df.columns.values) 列,输出包含一个名为:Poll Responses\n\t\t\t\t\t。 我查看了 Excel
This question already has answers here: What are good reasons for choosing invariance in an API like
指针类型作为类型前缀与在类型前加斜杠作为后缀有什么区别。斜线到底是什么意思? 最佳答案 语法 T/~ 和 T/& 基本上已被弃用(我什至不确定编译器是否仍然接受它)。在向新向量方案过渡的初始阶段,[T
我正在尝试找到一种方法来获取模板参数的基类。 考虑以下类: template class Foo { public: Foo(){}; ~Foo(){};
这是一个让我感到困惑的小问题。我不知道如何描述它,所以只看下面的代码: struct B { B() {} B(B&) { std::cout ::value #include
为什么有 T::T(T&) 而 T::T(const T&) 更适合 copy ? (大概是用来实现move语义的???) 原始描述(被melpomene证明是错误的): 在C++11中,支持了一种新
在 Java 7 中使用 eclipse 4.2 并尝试实现 List 接口(interface)的以下方法时,我收到了警告。 public T[] toArray(T[] a) { ret
假设有三个函数: def foo[T](a:T, b:T): T = a def test1 = foo(1, "2") def test2 = foo(List(), ListBuffer()) 虽
我对柯里化(Currying)和非柯里化(Currying)泛型函数之间类型检查的差异有点困惑: scala> def x[T](a: T, b: T) = (a == b) x: [T](a: T,
考虑一个类A,我如何编写一个具有与相同行为的模板 A& pretty(A& x) { /* make x pretty */ return x; } A pretty(A&& x) {
Eclipse 表示由于泛型类型橡皮擦,类型参数不允许使用 instanceof 操作。 我同意在运行时不会保留任何类型信息。但是请考虑以下类的通用声明: class SomeClass{ T
在 C++14 中: 对于任何整数或枚举类型 T 以及对于任何表达式 expr: 有没有区别: struct S { T t { expr }; }; 和 struct S { T t = { exp
我是一名优秀的程序员,十分优秀!