작업중인 프로젝트가 있습니다. 메인 프로그램은 Golang으로 작성되어 있고, C# .Net AOT로 작성된 공유 라이브러리도 있습니다.
이 프로젝트에는 Golang 코드와 C# .Net AOT 간의 함수 호출이 필요합니다.
구체적인 내용은 Golang 함수를 콜백 함수로 C#에 전달하고 C#에서 호출하는 것입니다. 그런데 테스트해 보니 해당 기능이 제대로 작동하지 않는 것으로 나타났습니다.
내 테스트 코드는 다음과 같습니다.
C#:
으아아아컴파일 명령:
dotnet 发布 -p:NativeLib=共享 -r win-x64 -c 调试
바둑 코드:
으아아아테스트를 위해 간단한 Add(int a, int b) 함수를 구현했습니다. 입력 매개변수가 1과 2이고 결과는 3이어야 하는데 그렇지 않습니다. 디버깅을 하다가 콜백 함수의 매개변수 목록이 1과 2가 아닌 이상한 숫자를 발견했습니다. 호출 규칙인 Stdcall과 Cdecl을 모두 시도했지만 문제를 해결할 수 없었습니다.
원인은 무엇이며 해결방법은 무엇인가요?
디버그
전체 출력 로그입니다
using System.Runtime.InteropServices; namespace CSharp_Go { public unsafe class Export { private static delegate* unmanaged[Stdcall]<int, int, int> _addDel; [UnmanagedCallersOnly(EntryPoint = "SetAddFunc")] public static void SetAddFunc(delegate* unmanaged[Stdcall]<int, int, int> addDel) { _addDel = addDel; } private static delegate* unmanaged<int> _testFun; [UnmanagedCallersOnly(EntryPoint = "SetTestFunc")] public static void SetTestFunc(delegate* unmanaged<int> testFun) { _testFun = testFun; } [UnmanagedCallersOnly(EntryPoint = "Test")] public static int Test() { int res = _testFun(); Console.WriteLine($"in c# Test res:{res}"); return res; } [UnmanagedCallersOnly(EntryPoint = "Add")] public static int Add(int a, int b) { Console.WriteLine($"in c# Add a:{a}, b:{b}"); int res = 0; if (null != _addDel) { res = _addDel(a, b); Console.WriteLine($"in c# Add res:{res}, a:{a}, b:{b}"); } return res; } } }
go 함수를 내보내려면 cgo를 사용해야 합니다
으아아아출력은 다음과 같습니다.
위 내용은 .net aot의 콜백 함수로 golang 함수를 설정하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!