我正在创建一个程序,用户可以在其中创建自定义命令并在需要时执行它们。因此,我有一个类似于:
的类public class Command
{
Action c { get; set; }
// Overloaded Constructors------------------------------------
// changes the volume
public Command(int volumeChange)
{
c = ()=>
SomeClass.ChangeMasterVolume(volumeChange);
}
// Animate something
public Command(int x, int y)
{
c = ()=>
SomeClass.MoveMouse(x,y);
}
// etc.. there are more contructors....
//---------------------------------------------------------
public void ExecuteCommand()
{
c();
}
}
当用户关闭应用程序时,我想将这些命令保存在磁盘上的某个位置。有大约200个不同的命令,如果我可以从该类序列化一个实例,那就太好了。由于它包含一个Action,因此无法对其进行序列化。
如果我不必创建一个巨大的switch语句来确定要执行的命令,那将是很好的。解决这个问题的最佳方法是什么?
答案 0 :(得分:2)
听起来像你只需要保持一个界面而不是代表。
public interface IDoThingy
{
void DoStuff();
}
public class IncreaseVolumeThingy : IDoThingy
{
public int Volume { get; set; }
public IncreaseVolumeThingy(int volume)
{
Volume = volume;
}
public void DoStuff()
{
SomeClass.ChangeMasterVolume(Volume);
}
}
public class Command
{
protected IDoThingy _thingy = null;
public Command(IDoThingy thingy)
{
_thingy = thingy;
}
public void ExecuteCommand()
{
_thingy.DoStuff();
}
}
因此,您只需根据指定的命令创建某种形式的工厂,而不是创建一组构造函数。如果用户正在设置“增加音量”命令,则您新建IncreaseVolumeThingy
的实例并将其存储。在序列化时,可以在没有委托的情况下从状态重新创建它。
答案 1 :(得分:0)
使用反射按名称调用类方法。序列化类和方法名称。
http://www.codeproject.com/Articles/19911/Dynamically-Invoke-A-Method-Given-Strings-with-Met