本文介绍了通过用户输入调用功能的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

嗨-ITNOG

我想通过用户输入来调用函数,例如,如果用户输入了"max",max函数将像这样调用:


Hi - ITNOG

I want to calling functions by user input , for example if user entered ''max'' , max function will call , like it :


int max ( int k,int z)
{
...
}


int min( int k,int z)
{
...
}
void Main()
{

string s;

consol.read(s);


//What should I do now
...

consol.write("You have entered max , so max function called and it returned 5 ");

}






我想要一些可以获取函数名称并运行它的函数.

而不使用if.






I want something that get function name , and run it .

without using if.

推荐答案

methodInfo.Invoke(chosenMethod, new object[] {k, z});



但这是c#.



But that''s c#.




这篇关于通过用户输入调用功能的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-18 12:06