当我运行这段代码,我期望打印结果像A: 4, B: 89
.但实际上,不显示任何东西.
为什么这个程序不显示结果到标准输出?
main.go:
package main
/*
#include "c.h"
*/
import "C"
import (
"unsafe"
)
type S struct {
A int
B int
}
func main() {
s := &S{A: 4, B: 89}
pass_to_c := (*C.S)(unsafe.Pointer(s))
C.gostruct(pass_to_c)
}
字符串
c.h
#include <stdio.h>
#include <stdlib.h>
typedef struct {
long int A;
long int B;
} S;
extern void gostruct(S *struct_s) {
printf("A: %ld, B: %ld\n", struct_s->A, struct_s->B);
}
型
3条答案
按热度按时间gcuhipw91#
感谢您的评论。
我可以得到预期的结果与下面的代码
main.go:
字符串
c.h:
型
我假设不同语言的struct字段必须使用相同的类型。在问题代码中,struct字段的类型是不一样的。(C结构:32位int,Go结构:64位int)
在应答代码中,结构体字段在语言之间是相同的。(都是结构体:64位int)
darwin/amd64
*bf1o4zei2#
将
"console": "integratedTerminal"
添加到vscodelaunch.json
解决了我的问题。wecizke33#
我在LiteIDE中运行程序,不显示c printf输出。
但是在终端运行同样的程序,然后显示c printf输出。