go - 如何释放 C.CString 分配的内存?

标签 go cgo

这是我的代码:

helloworld.go:

package main

import "C"
import "unsafe"

//export HelloWorld
func HelloWorld() *C.char {
    cs := C.CString("Hello World!")
    C.free(unsafe.Pointer(cs))
    return cs
}

func main() {}

我遇到的错误之一:

src/helloworld.go:9:2: could not determine kind of name for C.free

基于这篇文章:https://blog.golang.org/c-go-cgo

我还发现我需要添加 #include <stdlib.h>在我的 C 文件的顶部。

helloworld.h:

#include <stdlib.h>
/* Created by "go tool cgo" - DO NOT EDIT. */

/* package command-line-arguments */

/* Start of preamble from import "C" comments.  */




/* End of preamble from import "C" comments.  */


/* Start of boilerplate cgo prologue.  */
#line 1 "cgo-gcc-export-header-prolog"

#ifndef GO_CGO_PROLOGUE_H
#define GO_CGO_PROLOGUE_H

typedef signed char GoInt8;
typedef unsigned char GoUint8;
typedef short GoInt16;
typedef unsigned short GoUint16;
typedef int GoInt32;
typedef unsigned int GoUint32;
typedef long long GoInt64;
typedef unsigned long long GoUint64;
typedef GoInt64 GoInt;
typedef GoUint64 GoUint;
typedef __SIZE_TYPE__ GoUintptr;
typedef float GoFloat32;
typedef double GoFloat64;
typedef float _Complex GoComplex64;
typedef double _Complex GoComplex128;

/*
  static assertion to make sure the file is being used on architecture
  at least with matching size of GoInt.
*/
typedef char _check_for_64_bit_pointer_matching_GoInt[sizeof(void*)==64/8 ? 1:-1];

typedef struct { const char *p; GoInt n; } GoString;
typedef void *GoMap;
typedef void *GoChan;
typedef struct { void *t; void *v; } GoInterface;
typedef struct { void *data; GoInt len; GoInt cap; } GoSlice;

#endif

/* End of boilerplate cgo prologue.  */

#ifdef __cplusplus
extern "C" {
#endif


extern char* HelloWorld();

#ifdef __cplusplus
}
#endif

我试过了,没有成功。

我需要释放内存。

我该怎么做?因为在那个例子中它打印出字符串。我想返回。没有C.free。我能做到。我只是担心会导致内存泄漏或其他问题。

最佳答案

Command cgo

// Go string to C string
// The C string is allocated in the C heap using malloc.
// It is the caller's responsibility to arrange for it to be
// freed, such as by calling C.free (be sure to include stdlib.h
// if C.free is needed).
func C.CString(string) *C.char

If the import of "C" is immediately preceded by a comment, that comment, called the preamble, is used as a header when compiling the C parts of the package.

例如,

package main

/*
#include <stdlib.h>
*/
import "C"

import "unsafe"

//export HelloWorld
func HelloWorld() *C.char {
    cs := C.CString("Hello World!")
    C.free(unsafe.Pointer(cs))
    return cs
}

func main() {}

关于go - 如何释放 C.CString 分配的内存?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47192652/

相关文章:

go - 如何在不使用 cgo 的情况下将 Go 函数绑定(bind)到 C 调用?

postgresql - 如何使用 cgo 构建 Postgres 扩展

go - 如何使用 Go API 客户端以编程方式创建 Google Cloud Function

go - 如何更改配置文件中的值未提供该值

deployment - 自动化 go 应用程序部署

node.js - NodeJS vs Golang for REST API 并用它实现后端

go - 返回 double 组的导出函数

web-services - 使用 gin-gonic 编写 Web 服务的最佳实践是什么

c - Go cgo ldap_init 无法确定 C.ldap_init 的名称类型