dongle0396 2013-08-06 02:55
浏览 27
已采纳

如何在Go中映射X切片?

I'm trying to use launchpad.net/gommap to memory map an array of int32, and some other custom struct types. I strictly want to use them where they are in the mapped region. The gommap.Mmap type is []byte, how can I make sections of that available as slices of some other type?

  • 写回答

1条回答 默认 最新

  • dongxun1244 2013-08-06 05:36
    关注

    You'd have to use the unsafe package.

    func mapInt32(fd uintptr, prot gommap.ProtFlags, flags gommap.MapFlags) ([]int32, error) {
        mmap, err := gommap.Map(fd, prot, flags)
        if err != nil {
            return nil, err
        }
        header := (*reflect.SliceHeader)(unsafe.Pointer(&mmap))
        // account for the size different between byte and int32
        header.Len /= 4
        header.Cap = header.Len
        return *(*[]int32)(unsafe.Pointer(header)), nil
    }
    

    You may want to make a way to unmap the memory when you're done with it. You could do that by unsafely casting your []int32 back to a gommap.MMap in a similar way.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 微信会员卡等级和折扣规则
  • ¥15 微信公众平台自制会员卡可以通过收款码收款码收款进行自动积分吗
  • ¥15 随身WiFi网络灯亮但是没有网络,如何解决?
  • ¥15 gdf格式的脑电数据如何处理matlab
  • ¥20 重新写的代码替换了之后运行hbuliderx就这样了
  • ¥100 监控抖音用户作品更新可以微信公众号提醒
  • ¥15 UE5 如何可以不渲染HDRIBackdrop背景
  • ¥70 2048小游戏毕设项目
  • ¥20 mysql架构,按照姓名分表
  • ¥15 MATLAB实现区间[a,b]上的Gauss-Legendre积分