我有一個用C編寫的串行庫,它有一個rx回調(diào)。我們訪問在此回調(diào)函數(shù)中通過串行鏈路接收的字節(jié)。我想將收到的字節(jié)傳遞給用Go編寫的應(yīng)用程序?qū)?。為此,我已?jīng)能夠從 C Rx 回調(diào)調(diào)用 go 函數(shù)。但是,當我嘗試將指向rx字節(jié)的指針傳遞給Go函數(shù)時,我沒有得到我所期望的。我編寫了一個示例程序,其中 C 函數(shù)返回指向 Go 函數(shù)的指針。我期望:將被打印出來hello實際結(jié)果:%!s(*uint8=0xc000018072)這里有一個測試程序來說明我正在嘗試做的事情:package main//#include <stdint.h>// extern void goHandler(uint8_t *str);//// static void doPrint(uint8_t *str) {// goHandler(str);// }import "C"import "fmt"//export goHandlerfunc goHandler(str *uint8) { fmt.Printf("%s\n",str)}func main() { bytes := []uint8("hello") C.doPrint((*C.uchar)(&bytes[0]))}編輯:我學習了如何執(zhí)行指針算術(shù)來訪問與指針地址偏移的數(shù)據(jù),但是有沒有辦法將整個數(shù)據(jù)從偏移量0傳遞到特定的偏移量(而不是逐個?)
1 回答

慕尼黑8549860
TA貢獻1818條經(jīng)驗 獲得超11個贊
我試過這個,它的工作原理,可能比任何其他方法都好:
package main
//#include <stdint.h>
// extern void goHandler(uint8_t *str, uint8_t length);
//
// static void doPrint(uint8_t *str, uint8_t length) {
// goHandler(str, length);
// }
import "C"
import "fmt"
import "unsafe"
//export goHandler
func goHandler(str *uint8, length uint8) {
b := *(*[1<<20]byte)(unsafe.Pointer(str))
fmt.Printf("%s\n",b[0:length])
}
func main() {
bytes := []uint8("hello")
C.doPrint((*C.uchar)(&bytes[0]), C.uchar(len(bytes)))
}
- 1 回答
- 0 關(guān)注
- 107 瀏覽
添加回答
舉報
0/150
提交
取消