문자열에 의한 구조체 호출
질문:
Go에서 호출이 가능합니까? 명시적으로 인스턴스를 초기화하지 않고 구조체의 이름을 나타내는 문자열을 사용하는 구조체의 메서드 struct?
.NET Framework
.NET Framework에서는 Reflection.Assembly.GetType() 및 MethodInfo를 사용하여 이 동작을 달성할 수 있습니다. 유형의 문자열 이름을 사용하여 어셈블리에서 유형을 가져온 다음 해당 유형의 인스턴스에서 메서드를 호출할 수 있습니다.
.NET Core
그러나 .NET Core에서는 Assembly.GetType() 및 MethodInfo를 더 이상 사용할 수 없습니다. .NET Core의 리플렉션 API는 메타데이터에 대해 더욱 제어되고 형식이 안전한 액세스를 제공합니다.
Go
Go에서 리플렉션 패키지는 검사하고 조작하는 방법을 제공합니다. 런타임에 유형을 지정합니다. Reflect.TypeOf 함수는 값의 유형을 반환하고, MethodByName 함수는 지정된 유형에 지정된 이름을 가진 메서드를 반환합니다.
.Go 코드 샘플
package main import ( "fmt" "reflect" ) type MyStruct struct { } func (a *MyStruct) Hello() { fmt.Println("Hello from MyStruct!") } func main() { // Get the type of MyStruct. t := reflect.TypeOf(MyStruct{}) // Get the method with the name "Hello" on MyStruct. m := t.MethodByName("Hello") // Create a new instance of MyStruct. v := reflect.New(t) // Invoke the Hello method on the new instance. m.Call(v) // Output: Hello from MyStruct! }
.NET 코드 샘플
using System; using System.Reflection; public class Program { public static void Main(string[] args) { // Get the type of MyStruct using Reflection. Type t = Assembly.GetExecutingAssembly().GetType("MyStruct"); // Get the method with the name "Hello" on MyStruct. MethodInfo m = t.GetMethod("Hello"); // Create a new instance of MyStruct. object v = Activator.CreateInstance(t); // Invoke the Hello method on the new instance. m.Invoke(v, null); // Output: Hello from MyStruct! } public struct MyStruct { public void Hello() { Console.WriteLine("Hello from MyStruct!"); } } }
요약
Go에서는 구조체 이름을 나타내는 문자열만 사용하여 구조체에서 메서드를 호출할 수 없습니다. 사전 초기화된 유형 이름 레지스트리가 없습니다. 이 기능을 구현하려면 사용자 정의 매핑 또는 초기화가 필요합니다.
위 내용은 Go에서 문자열 이름만 사용하여 구조체 메서드를 호출할 수 있나요?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!