码迷,mamicode.com
首页 > 其他好文 > 详细

Golang报错mixture of field:value and value initializers

时间:2018-11-29 15:25:30      阅读:297      评论:0      收藏:0      [点我收藏+]

标签:import   name   ola   print   val   imp   bsp   div   必须   

Golang 在使用匿名成员初始化时,如果出现

mixture of field:value and value initializers

是因为初始化的方式不对,见代码:
package main

import (
    "fmt"
)

type Person struct {
    Name string
    Age  int
    Sex  string
}

type Student struct {
    Person
    Id    string
    Grade string
}


func main() {
    s1 := Student{Person: Person{Name: "张三", Age: 13, Sex: ""}, Id: "13321", Grade: "三年级"}
    fmt.Printf("%+v\n", s1)

    s2 := Student{Person{"张三", 13, ""}, "12312", "三年级"}
    fmt.Println(s2)

    s3 := Student{Person{Name: "张三", Age: 13, Sex: ""}, Id: "13321", Grade: "三年级"} //报错 mixture of field:value and value initializers(字段的混合:值和值初始化器)
    fmt.Println(s3)
}

s3直接导致代码编译不过去,想要指定字段就必须按 s1的方式 Person:Person{xxx:"xxx"},要么就不指定按照s2的方式

 

Golang报错mixture of field:value and value initializers

标签:import   name   ola   print   val   imp   bsp   div   必须   

原文地址:https://www.cnblogs.com/xbblogs/p/10037545.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!