douliangbian7323 2015-01-23 22:22
浏览 3
已采纳

引用子结构数组的Golang问题

I am having a problem figuring out how to reference elements of a sub structure.

See: http://play.golang.org/p/pamS_ZY01s

Given something like following.... How do you reference data in the room struct? I have tried fmt.Println(*n.Homes[0].Rooms[0].Size), but that does not work.

Begin Code example

package main

import (
    "fmt"
)

type Neighborhood struct {
    Name  string
    Homes *[]Home
}

type Home struct {
    Color string
    Rooms *[]Room
}

type Room struct {
    Size string
}

func main() {
    var n Neighborhood
    var h1 Home
    var r1 Room

    n.Name = "Mountain Village"
    h1.Color = "Blue"
    r1.Size = "200 sq feet"

    // Initiaize Array of Homes
    homeslice := make([]Home, 0)
    n.Homes = &homeslice

    roomslice := make([]Room, 0)
    h1.Rooms = &roomslice

    *h1.Rooms = append(*h1.Rooms, r1)
    *n.Homes = append(*n.Homes, h1)

    fmt.Println(n)
    fmt.Println(*n.Homes)

}
  • 写回答

1条回答 默认 最新

  • duan198811 2015-01-23 22:30
    关注

    First, *[]Home is really wasteful. A slice is a three worded struct under the hood, one of them being itself a pointer to an array. You are introducing a double indirection there. This article on data structures in Go is very useful.

    Now, because of this indirection, you need to put the dereference operator * in every pointer-to-slice expression. Like this:

    fmt.Println((*(*n.Homes)[0].Rooms)[0].Size)
    

    But, really, just take out the pointers.

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

报告相同问题?

悬赏问题

  • ¥20 求快手直播间榜单匿名采集ID用户名简单能学会的
  • ¥15 DS18B20内部ADC模数转换器
  • ¥15 做个有关计算的小程序
  • ¥15 MPI读取tif文件无法正常给各进程分配路径
  • ¥15 如何用MATLAB实现以下三个公式(有相互嵌套)
  • ¥30 关于#算法#的问题:运用EViews第九版本进行一系列计量经济学的时间数列数据回归分析预测问题 求各位帮我解答一下
  • ¥15 setInterval 页面闪烁,怎么解决
  • ¥15 如何让企业微信机器人实现消息汇总整合
  • ¥50 关于#ui#的问题:做yolov8的ui界面出现的问题
  • ¥15 如何用Python爬取各高校教师公开的教育和工作经历