登录
首页 >  Golang >  Go问答

在 Golang 中取消引用地图索引

来源:Golang技术栈

时间:2023-03-03 10:55:38 436浏览 收藏

哈喽!今天心血来潮给大家带来了《在 Golang 中取消引用地图索引》,想必大家应该对Golang都不陌生吧,那么阅读本文就都不会很困难,以下内容主要涉及到golang,若是你正在学习Golang,千万别错过这篇文章~希望能帮助到你!

问题内容

我目前正在学习 Go,我制作了这个简单粗暴的库存程序,只是为了修改结构和方法以了解它们是如何工作的。在驱动程序文件中,我尝试从 Cashier 类型的项目映射中调用方法和项目类型。我的方法有指针接收器直接使用结构而不是复制。当我运行程序时出现此错误.\driver.go:11: cannot call pointer method on f[0] .\driver.go:11: cannot take the address of f[0]

库存.go:

package inventory


type item struct{
    itemName string
    amount int
}

type Cashier struct{
    items map[int]item
    cash int
}

func (c *Cashier) Buy(itemNum int){
    item, pass := c.items[itemNum]

    if pass{
        if item.amount == 1{
            delete(c.items, itemNum)
        } else{
            item.amount--
            c.items[itemNum] = item 
        }
        c.cash++
    }
}


func (c *Cashier) AddItem(name string, amount int){
    if c.items == nil{
        c.items = make(map[int]item)
    }
    temp := item{name, amount}
    index := len(c.items)
    c.items[index] = temp
}

func (c *Cashier) GetItems() map[int]item{
    return c.items;
}

func (i *item) GetName() string{
    return i.itemName
}

func (i *item) GetAmount() int{
    return i.amount
}

司机.go:

package main

import "fmt"
import "inventory"

func main() {
    x := inventory.Cashier{}
    x.AddItem("item1", 13)
    f := x.GetItems()

    fmt.Println(f[0].GetAmount())
}

真正与我的问题有关的代码部分是GetAmount函数 ininventory.go和 print 语句driver.go

正确答案

无法寻址映射条目(因为它的地址可能会在映射增长/收缩期间发生变化),因此您不能在它们上调用指针接收器方法。

详细信息:[https ://groups.google.com/forum/?fromgroups=#!topic/golang- nuts/4_pabWnsMp0](https://groups.google.com/forum/?fromgroups=#!topic/golang- nuts/4_pabWnsMp0)

今天关于《在 Golang 中取消引用地图索引》的内容介绍就到此结束,如果有什么疑问或者建议,可以在golang学习网公众号下多多回复交流;文中若有不正之处,也希望回复留言以告知!

声明:本文转载于:Golang技术栈 如有侵犯,请联系study_golang@163.com删除
相关阅读
更多>
最新阅读
更多>
课程推荐
更多>
评论列表