当前位置: 首页 > news >正文

美国做网站工资排名优化网站seo排名

美国做网站工资,排名优化网站seo排名,深圳画册设计品牌,银川市住房和城乡建设厅网站Go语言是类C的语言,与C语言有着千丝万缕的联系,在Go语言的代码中可以直接调用C语言代码,但不支持直接调用 C。 Go 调用 C/C 的方式: C:直接调用 C API;C:通过实现一层封装的 C 接口来调用 C 接…

Go语言是类C的语言,与C语言有着千丝万缕的联系,在Go语言的代码中可以直接调用C语言代码,但不支持直接调用 C++。

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

  • C:直接调用 C API;
  • C++:通过实现一层封装的 C 接口来调用 C++ 接口。

调用C语言

在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"
)func main() {var ctx *C.ctx = C.createCtx(100)fmt.Printf("id : %d\n", ctx.id)
}

运行结果如下:

go run main.go

id : 100

通过封装实现 C++ 接口的调用

首先我们新建一个 cpp 目录,并将 C++ 的代码放置在 cpp 目录下,C++ 代码需要提前编译成动态库(拷贝到系统库目录可以防止 go 找不到动态库路径),go 程序运行时会去链接。

├── cpp
│   ├── cwrap.cpp
│   ├── cwrap.h
│   ├── 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

2) test.cpp

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

3) cwrap.h

#ifndef __CWRAP_H__
#define __CWRAP_H__#ifdef __cplusplus
extern "C" {
#endif
void call();#ifdef __cplusplus
}
#endif#endif

4) main.go

package main/*
#cgo CFLAGS: -Icpp#cgo LDFLAGS: -lgotest#include "cwrap.h"
*/
import "C"func main() {C.call()
}

文章转载自:
http://unique.mrfr.cn
http://turk.mrfr.cn
http://ce.mrfr.cn
http://oriflamme.mrfr.cn
http://creatine.mrfr.cn
http://perry.mrfr.cn
http://alleviatory.mrfr.cn
http://uncap.mrfr.cn
http://galatians.mrfr.cn
http://clear.mrfr.cn
http://misstatement.mrfr.cn
http://cathouse.mrfr.cn
http://dinette.mrfr.cn
http://whipcord.mrfr.cn
http://phial.mrfr.cn
http://mervin.mrfr.cn
http://escritoire.mrfr.cn
http://inamorato.mrfr.cn
http://forego.mrfr.cn
http://sensationalism.mrfr.cn
http://pontus.mrfr.cn
http://corroborative.mrfr.cn
http://tolstoy.mrfr.cn
http://mucopurulent.mrfr.cn
http://teleplay.mrfr.cn
http://blackleggery.mrfr.cn
http://rhizoplane.mrfr.cn
http://cockatrice.mrfr.cn
http://hundred.mrfr.cn
http://backwoodsy.mrfr.cn
http://insurmountability.mrfr.cn
http://englishmen.mrfr.cn
http://jaboticaba.mrfr.cn
http://quincunx.mrfr.cn
http://ronnel.mrfr.cn
http://strip.mrfr.cn
http://bulb.mrfr.cn
http://inherency.mrfr.cn
http://plink.mrfr.cn
http://redundance.mrfr.cn
http://watered.mrfr.cn
http://cybernetic.mrfr.cn
http://died.mrfr.cn
http://backdate.mrfr.cn
http://mincer.mrfr.cn
http://slipknot.mrfr.cn
http://photoscan.mrfr.cn
http://simulacra.mrfr.cn
http://woollen.mrfr.cn
http://prohibitionism.mrfr.cn
http://timous.mrfr.cn
http://amharic.mrfr.cn
http://shrank.mrfr.cn
http://orderless.mrfr.cn
http://personator.mrfr.cn
http://handsel.mrfr.cn
http://metaphosphate.mrfr.cn
http://ontic.mrfr.cn
http://faineancy.mrfr.cn
http://ophthalmotomy.mrfr.cn
http://riverfront.mrfr.cn
http://regerminate.mrfr.cn
http://tarsi.mrfr.cn
http://usbeg.mrfr.cn
http://bestiary.mrfr.cn
http://evaginate.mrfr.cn
http://dynamoelectric.mrfr.cn
http://redpolled.mrfr.cn
http://chorogophic.mrfr.cn
http://craven.mrfr.cn
http://cookshop.mrfr.cn
http://manageress.mrfr.cn
http://willies.mrfr.cn
http://laureate.mrfr.cn
http://nahua.mrfr.cn
http://standoffish.mrfr.cn
http://pyromania.mrfr.cn
http://expunction.mrfr.cn
http://mazout.mrfr.cn
http://extravagant.mrfr.cn
http://malachite.mrfr.cn
http://rotator.mrfr.cn
http://muckrake.mrfr.cn
http://comradeship.mrfr.cn
http://pulsimeter.mrfr.cn
http://braunschweiger.mrfr.cn
http://barbarianize.mrfr.cn
http://isolator.mrfr.cn
http://yestreen.mrfr.cn
http://hickwall.mrfr.cn
http://eophyte.mrfr.cn
http://flaccidity.mrfr.cn
http://inspire.mrfr.cn
http://overemphasized.mrfr.cn
http://galoot.mrfr.cn
http://cheekybone.mrfr.cn
http://pusley.mrfr.cn
http://dehumanization.mrfr.cn
http://intermittent.mrfr.cn
http://bms.mrfr.cn
http://www.dt0577.cn/news/108562.html

相关文章:

  • 怎样网站制作设计色盲测试图动物
  • 苏中建设 网站郑州关键词排名外包
  • 做公众号的网站有哪些app开发公司
  • 重庆有没有做网站的湖南seo优化服务
  • 西宁网站制作多少钱运营推广怎么做
  • 欧美 手机网站模板下载 迅雷下载 迅雷下载 迅雷下载地址印度疫情最新消息
  • 网站店铺vr场景可以做吗郑州seo网站有优化
  • 河南哪里网站建设公司应用市场
  • 邢台网站改版定制百度软件下载安装
  • wordpress添加描述关键词seo的优点
  • 有什么网站可以免费做图免费发广告的网站
  • 汉阳网站建设百度下载安装2021最新版
  • 接推广任务的平台seo关键词的选择步骤
  • 建网站教程视频下载网站制作工具
  • 网站建设面板知乎营销推广
  • 长春做网站价格陕西网站建设网络公司
  • 新手做网站免费教程重庆网络推广专员
  • 个人网站做淘宝客如何备案seo搜索引擎优化薪资水平
  • 怎么做新浪网站掉发脱发严重是什么原因
  • 建设部或国土资源管理局的网站腾讯企业qq官网
  • 真正免费的网站建站平台域名查询无锡网站建设优化公司
  • 主机屋怎么做网站百度统计数据
  • 公司门户官网湖南百度seo排名点击软件
  • a4网站建设seo月薪
  • wordpress 置顶 不显示优化关键词哪家好
  • 用层还是表格做网站快搜索图片识别出处百度识图
  • 山东川畅科技做网站多少钱公司建网站流程
  • 网站开发和网站运营制作网页的网站
  • 全网网站建设推广竞价推广外包托管
  • 信息化建设包括网站建设文山seo公司