登录
首页 >  Golang >  Go问答

结构中映射的匿名列表的“复合文字中缺少类型”

来源:stackoverflow

时间:2024-05-01 23:48:41 352浏览 收藏

本篇文章主要是结合我之前面试的各种经历和实战开发中遇到的问题解决经验整理的,希望这篇《结构中映射的匿名列表的“复合文字中缺少类型”》对你有很大帮助!欢迎收藏,分享给更多的需要的朋友学习~

问题内容

编辑:虽然复合文字中缺少类型中的编译错误与我的问题中的相同,但它们的组成足够不同,让我无法理解如何将解决方案应用到我的问题中。程序,因此创建了这个问题。

我是新手,我正在尝试为一个我已经验证可以成功调用的函数编写一个测试,如下所示:

func main() {

    items := []map[string]int{
        map[string]int{
            "value": 100,
            "weight": 5,
        },
        map[string]int{
            "value": 90,
            "weight": 2,
        },
        map[string]int{
            "value": 80,
            "weight": 2,
        },
    }
    fmt.println(knapsack(items, 0, 6))
}

为了方便起见,使用此模板(由我的 ide 生成):

func TestKnapSack(t *testing.T) {
    type args struct {
        items            []map[string]int
        current_index    int
        remaining_weight int
    }
    tests := []struct {
        name string
        args args
        want int
    }{
        {
            "Only test", // name of test
            {
                {   // items
                    map[string]int{
                        "value": 100,
                        "weight": 5,
                    },
                    map[string]int{
                        "value": 90,
                        "weight": 2,
                    },
                    map[string]int{
                        "value": 80,
                        "weight": 2,
                    },
                },
                0, // current_index
                4, // remaining_weight
            },
            170, // want
        },
    }
    for _, tt := range tests {
        t.Run(tt.name, func(t *testing.T) {
            if got := KnapSack(tt.args.items, tt.args.current_index, tt.args.remaining_weight); got != tt.want {
                t.Errorf("KnapSack() = %v, want %v", got, tt.want)
            }
        })
    }
}

args 结构不喜欢我的地图数组。我怎样才能填充这个结构以便它能够编译?


解决方案


似乎您错过了 args[]map[string]int 的类型

    tests := []struct {
        name string
        args args
        want int
    }{
        {
            "Only test", // name of test
            args{
                []map[string]int{   // items
                    map[string]int{
                        "value": 100,
                        "weight": 5,
                    },
                    map[string]int{
                        "value": 90,
                        "weight": 2,
                    },
                    map[string]int{
                        "value": 80,
                        "weight": 2,
                    },
                },
                0, // current_index
                4, // remaining_weight
            },
            170, // want
        },
    }

终于介绍完啦!小伙伴们,这篇关于《结构中映射的匿名列表的“复合文字中缺少类型”》的介绍应该让你收获多多了吧!欢迎大家收藏或分享给更多需要学习的朋友吧~golang学习网公众号也会发布Golang相关知识,快来关注吧!

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