Go调用C/C++

栏目: C++ · 发布时间: 5年前

内容简介:golang是类C的语言 支持调用C接口(不支持调用C++)Go调用C/C++的方式 :test.cpp和test.h是C++接口的实现

cgo

golang是类C的语言 支持调用C接口(不支持调用C++)

Go调用C/C++的方式 :

  1. C : 直接调用C API
  2. C++ : 通过实现一层封装的C接口来调用C++接口

Go集成C/C++的方式

  1. go的源代码中直接声明C代码

    比较简单的应用情况 可以直接使用这种方法 C代码直接写在 go 代码的注释中

    注释之后紧跟import "C" 通过C.xx来引用C的结构和函数

package main

/*
#include <stdio.h>
#include <stdlib.h>

typedef struct {
    int id;
}ctx;

ctx *createCtx(int id) {
    ctx *obj = (ctx *)malloc(sizeof(ctx));
    obj->id = id;
    return obj;
}
*/
import "C"
import (
    "fmt"
    "sync"
)

func main() {
    var ctx *C.ctx = C.createCtx(100)
    fmt.Printf("id : %d\n", ctx.id)
}
  1. 通过封装实现调用C++接口

    目录结构 :C++代码放置在cpp目录下

    C++代码需要提前编译成动态库(拷贝到系统库目录可以防止go找不到动态库路径),go程序运行时会去链接

.
├── cpp
│   ├── cwrap.cpp
│   ├── cwrap.h
│   ├── libgotest.dylib
│   ├── test.cpp
│   └── test.h
├── main.go

test.cpp和test.h是C++接口的实现

cwrap.h和cwrap.cpp是封装的C接口的实现

  1. test.h
#ifndef __TEST_H__
#define __TEST_H__

#include <stdio.h>

class Test {
public:
    void call();
};

#endif
  1. test.cpp
#include "test.h"

void Test::call() {
    printf("call from c++ language\n");
}
  1. cwrap.cpp
#include "cwrap.h"
#include "test.h"

void call() {
    Test ctx;
    ctx.call();
}
  1. cwrap.h
#ifndef __CWRAP_H__
#define __CWRAP_H__

#ifdef __cplusplus
extern "C" {
#endif
void call();

#ifdef __cplusplus
}
#endif

#endif
  1. main.go
package main

/*
#cgo CFLAGS: -Icpp

#cgo LDFLAGS: -lgotest

#include "cwrap.h"
*/
import "C"

func main() {
    C.call()
}

以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,也希望大家多多支持 码农网

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

程序员修炼之道

程序员修炼之道

[美]享特 / 人民邮电出版社 / 2007-12 / 49.00元

《程序员修炼之道》适合各层次软件开发人员阅读,也适合高等院校计算机专业学生和教师阅读。一起来看看 《程序员修炼之道》 这本书的介绍吧!

Base64 编码/解码
Base64 编码/解码

Base64 编码/解码

URL 编码/解码
URL 编码/解码

URL 编码/解码

UNIX 时间戳转换
UNIX 时间戳转换

UNIX 时间戳转换