การเรียกฟังก์ชันจากสตริงใน C #


145

ฉันรู้ใน php คุณสามารถโทรออกเช่น:

$function_name = 'hello';
$function_name();

function hello() { echo 'hello'; }

เป็นไปได้ใน. Net?


2
ฉันเห็นว่าวิธีการของคุณควรเป็นpublicเช่นกัน
zapoo

คำตอบ:


268

ใช่. คุณสามารถใช้การสะท้อน บางสิ่งเช่นนี้

Type thisType = this.GetType();
MethodInfo theMethod = thisType.GetMethod(TheCommandString);
theMethod.Invoke(this, userParameters);

56
และสิ่งนี้ต้องการ "ใช้ System.Reflection;"
jptsetung

1
สามารถใช้ฟังก์ชันนี้เพื่อเรียกใช้ฟังก์ชันที่มีพารามิเตอร์เช่นสตริง f = "วิธีการ (พารามิเตอร์ 1, พารามิเตอร์ 2)";
Thunder

ขอบคุณ @ottobar สำหรับการตอบสนอง ฉันไม่รู้ว่านี่คือสิ่งที่ฉันกำลังมองหาหรือไม่: ฉันต้องการใช้ฟังก์ชัน SQL scalar ในรหัส c # ของฉัน ฉันจะเรียกมันว่าอย่างไร
Chagbert

1
FYI สิ่งนี้ไม่ทำงานหากคุณมีวิธีการมากเกินไป
Sean O'Neil

ด้วยรหัสข้างต้น - วิธีการที่ถูกเรียกจะต้องมีการแก้ไขการเข้าถึง - สาธารณะ หากไม่ใช่แบบสาธารณะโปรดใช้การเชื่อมธง - BindingFlags.NonPublic | BindingFlags.Instance .. Type thisType = this.GetType(); MethodInfo theMethod = thisType.GetMethod(TheCommandString, BindingFlags.NonPublic | BindingFlags.Instance); theMethod.Invoke(this, userParameters);
Sibgath

75

คุณสามารถเรียกใช้เมธอดของคลาสอินสแตนซ์โดยใช้การสะท้อนการทำเมธอดแบบไดนามิก:

สมมติว่าคุณมีวิธีการที่เรียกว่าสวัสดีในอินสแตนซ์ที่เกิดขึ้นจริง (นี้):

string methodName = "hello";

//Get the method information using the method info class
 MethodInfo mi = this.GetType().GetMethod(methodName);

//Invoke the method
// (null- no parameter for the method call
// or you can pass the array of parameters...)
mi.Invoke(this, null);

1
วิธีการเกี่ยวกับวิธีการจากชั้น "สตริง"? ใช้เฟรมเวิร์ก 4
ลีอันโดร

36
class Program
    {
        static void Main(string[] args)
        {
            Type type = typeof(MyReflectionClass);
            MethodInfo method = type.GetMethod("MyMethod");
            MyReflectionClass c = new MyReflectionClass();
            string result = (string)method.Invoke(c, null);
            Console.WriteLine(result);

        }
    }

    public class MyReflectionClass
    {
        public string MyMethod()
        {
            return DateTime.Now.ToString();
        }
    }

นี่ขึ้นอยู่กับคลาส
Leandro

และวิธีการโมฆะ?
Kiquenet

2

แทนเจนต์เล็กน้อย - หากคุณต้องการแยกวิเคราะห์และประเมินสตริงนิพจน์ทั้งหมดซึ่งมีฟังก์ชัน (ซ้อนกัน!) ให้พิจารณา NCalc ( http://ncalc.codeplex.com/และ nuget)

อดีต แก้ไขเล็กน้อยจากเอกสารโครงการ:

// the expression to evaluate, e.g. from user input (like a calculator program, hint hint college students)
var exprStr = "10 + MyFunction(3, 6)";
Expression e = new Expression(exprString);

// tell it how to handle your custom function
e.EvaluateFunction += delegate(string name, FunctionArgs args) {
        if (name == "MyFunction")
            args.Result = (int)args.Parameters[0].Evaluate() + (int)args.Parameters[1].Evaluate();
    };

// confirm it worked
Debug.Assert(19 == e.Evaluate());

และภายในEvaluateFunctionผู้รับมอบสิทธิ์คุณจะเรียกใช้ฟังก์ชันที่มีอยู่ของคุณ


0

ในความเป็นจริงฉันกำลังทำงานกับ Windows Workflow 4.5 และฉันต้องหาวิธีส่งผู้แทนจาก statemachine ไปยังวิธีที่ไม่ประสบความสำเร็จ วิธีเดียวที่ฉันได้พบคือการส่งสตริงที่มีชื่อของวิธีการที่ฉันต้องการส่งเป็นผู้รับมอบสิทธิ์และการแปลงสตริงเป็นผู้รับมอบสิทธิ์ภายในวิธีการ คำตอบที่ดีมาก ขอบคุณ ตรวจสอบลิงค์นี้https://msdn.microsoft.com/en-us/library/53cz7sc6(v=vs.110).aspx


0
รหัสนี้ทำงานในแอปพลิเคชั่นคอนโซล. net
class Program
{
    static void Main(string[] args)
    {
        string method = args[0]; // get name method
        CallMethod(method);
    }
    
    public static void CallMethod(string method)
    {
        try
        {
            Type type = typeof(Program);
            MethodInfo methodInfo = type.GetMethod(method);
            methodInfo.Invoke(method, null);
        }
        catch(Exception ex)
        {
            Console.WriteLine("Error: " + ex.Message);
            Console.ReadKey();
        }
    }
    
    public static void Hello()
    {
        string a = "hello world!";
        Console.WriteLine(a);
        Console.ReadKey();
    }
}

ยินดีต้อนรับสู่ SO! ฉันชอบคำตอบของคุณคุณช่วยอธิบายเพิ่มเติมเล็กน้อยเกี่ยวกับสิ่งที่คุณกำลังทำอยู่ได้หรือไม่?
a.deshpande012

สวัสดีปิดหลักสูตรนี่เป็นแอปพลิเคชั่นคอนโซล. net ภายใน "program class" มีหลายวิธีหรือฟังก์ชั่นเช่น: hello, hello2, hello2 วิธีการค้นหา "CallMethod (วิธีสตริง)" และให้ฉันเรียกใช้วิธีการใด ๆ ภายใน "คลาสโปรแกรม" เรียกโดยชื่อมันเป็นพารามิเตอร์สตริง เมื่อฉันรันแอพพลิเคชั่นจาก "Windows Console": ฉันเขียน: "name app" + "เมธอดที่ฉันต้องเรียกใช้" ตัวอย่างเช่น: myapp hello จากนั้นส่งคืน "hello world!" อาจเป็น "myapp hello2" หรือ "myapp hello3" ฉันคิดว่าสามารถทำงานได้ในแอปพลิเคชั่น. Net
ranobe

คุณต้องเพิ่มคลาส Reflection: "using System.Reflection;"
ranobe

-9

ใน C # คุณสามารถสร้างผู้รับมอบสิทธิ์เป็นพอยน์เตอร์ของฟังก์ชัน ตรวจสอบบทความ MSDN ต่อไปนี้สำหรับข้อมูลการใช้งาน:http://msdn.microsoft.com/en-us/library/ms173171(VS.80).aspx

    public static void hello()
    {
        Console.Write("hello world");
    }

   /* code snipped */

    public delegate void functionPointer();

    functionPointer foo = hello;
    foo();  // Writes hello world to the console.

15
นี่ไม่ได้มาจากสตริง!
nawfal
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.