This question covers the use of actions in a dictionary.我想做类似的事情,但每次操作多个方法:
static readonly Dictionary<char, Action[]> morseDictionary = new Dictionary<char,Action[]>
{
{ 'a', new Action[] {dot, dash} },
{ 'b', new Action[] {dash, dot, dot, dot} },
{ 'c', new Action[] {dash, dot, dash, dot} },
{ 'd', new Action[] {dash, dot, dot} },
{ 'e', new Action[] {dot} }
// etc
};
dot
和dash
引用了这些私有函数:
private static void dash(){
Console.Beep(300, timeUnit*3);
}
private static void dot(){
Console.Beep(300, timeUnit);
}
我有另一个函数morseThis
,用于将消息字符串转换为音频输出:
private static void morseThis(string message){
char[] messageComponents = message.ToCharArray();
if (morseDictionary.ContainsKey(messageComponents[i])){
Action[] currentMorseArray = morseDictionary[messageComponents[i]];
Console.WriteLine(currentMorseArray); // prints "System.Action[]"
}
}
在上面的示例中,我可以打印&#34; System.Action []&#34;到输入消息中包含的每个字母的控制台。但是,我的目的是按顺序调用currentMorseArray
中的方法。
如何访问字典中给定Action []中包含的方法?
答案 0 :(得分:2)
你快到了。您已经获得了一系列操作,因此现在您需要做的就是按顺序执行操作。
C#中的{p>Action
和Func
就像任何其他对象一样 - 您可以将它们放在数组中,将它们分配给变量,将它们作为参数传递给方法,依此类推。唯一的区别是你可以调用一个动作。这个语法看起来就像调用方法的语法一样:
Action myAction = ...
myAction(); // call the action
因此,要执行数组中的操作,只需foreach
向下移动数组就可以逐个引出它们,并在循环体中调用每个数组。
private static void morseThis(string message)
{
char[] messageComponents = message.ToCharArray();
if (morseDictionary.ContainsKey(messageComponents[i]))
{
Action[] currentMorseArray = morseDictionary[messageComponents[i]];
foreach (Action action in currentMorseArray)
{
action();
}
}
}
答案 1 :(得分:2)
枚举动作并执行它们。
private static void morseThis(string message)
{
char[] messageComponents = message.ToCharArray();
foreach(char c in messageComponents)
{
Action[] actions;
if (morseDictionary.TryGetValue(c, out actions))
{
foreach(Action action in actions)
{
action();
}
}
}
}
答案 2 :(得分:2)
使用foreach
迭代一系列操作:
private static void morseThis(string message){
char[] messageComponents = message.ToCharArray();
Action[] currentMorseArray;
if (morseDictionary.TryGetValue(messageComponents[i], out currentMorseArray))
{
foreach(var action in currentMorseArray)
{
action();
}
}
}
我不确定Console.WriteLine
中您期望的内容,但您观察到的行为应该是WriteLine
调用ToString
对象来打印它对于数组(以及未覆盖ToString
的其他类型),它只返回类型名称。
答案 3 :(得分:0)
static readonly Dictionary<char, List<Action>> morseDictionary = new Dictionary<char,List<Action>>
{
{ 'a', new List<Action> {dot, dash} },
{ 'b', new List<Action> {dash, dot, dot, dot} },
{ 'c', new List<Action> {dash, dot, dash, dot} },
{ 'd', new List<Action> {dash, dot, dot} },
{ 'e', new List<Action> {dot} }
// etc
};
private static void morseThis(string messageSrc)
{
foreach(char message in messageSrc.ToCharArray())
{
List<Action> currentMorseArray;
if (morseDictionary.TryGetValue(message, out currentMorseArray))
{
currentMorseArray.ForEach(x=>x());
}
}
}