初级会员
  • 第 51406 位会员
  • qianniancn
  • qiannian
  • 2020-04-03 18:30:30
  • Offline
  • 20 83

最近发布的主题

    暂无

最近发布的文章

    暂无

最近发布的项目

    暂无

最近的评论

  • #5 @wn0112 没事,起初我以为是你不会调用dll,然后没考虑到uintptr这个问题。后来我是看到群里有人说go传double有问题,我才研究了一下
  • C里面的double,golang 调用dll不能直接传float64,需要转换成uint64 关键词:golang 调用dll 怎么传float64参数,如果返回double需要怎么做 C代码: ```` // 没有指针 double sum(double a, double b) { return a + b; } // 如果是指针 double sum(double a, double b,double *c) { *c=1.33333; return a + b; } ```` // 有指针 ![2.png](https://static.studygolang.com/200417/693ac36de8e6961e08cb27b2a9cdff89.png) // 没有指针 返回double ![QQ图片20200417135959.png](https://static.studygolang.com/200417/e1457188c9f07d7c10e3de93e4e07085.png)
  • go调用dll 方法 ``` var ( moddll = syscall.NewLazyDLL("test.dll") procDiv = moddll.NewProc("div") ) func main() { Div(1.33, 2.22) } func Div(a, b float64) float64 { r1, _, _ := syscall.Syscall(procDiv.Addr(), 2, uintptr(a), uintptr(b), 0) return float64(r1) } ```