golang 学习记录

package main

/*
    #include <stdio.h>
    #include <stdlib.h>
    struct CType {
        int Id;
        int Id2;
    };
    typedef struct CType TheCType;
    TheCType *getTheArray(int length){

        TheCType *ctype;

        ctype = malloc(length*sizeof(TheCType));

        return ctype;
    }
    void Free(TheCType *ctype){
        free(ctype);
    }
*/
import "C"
import (
    //"fmt"
    "reflect"
    //"time"
    "unsafe"
)

var theGoSlice []C.TheCType

func cc() {

    length := C.int(500000)

    var theCArray = C.getTheArray(length)
    C.Free(theCArray)

    sliceHeader := (*reflect.SliceHeader)((unsafe.Pointer(&theGoSlice)))
    sliceHeader.Cap = int(uintptr(length))
    sliceHeader.Len = int(uintptr(length))
    sliceHeader.Data = uintptr(unsafe.Pointer(theCArray))

}


不知道是否正确

本文来自:开源中国博客

感谢作者:984195889

查看原文:golang 学习记录

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。