gpt4 book ai didi

go - 为什么嵌入式类型不能作为指针传递

转载 作者:数据小太阳 更新时间:2023-10-29 03:22:04 27 4
gpt4 key购买 nike

<分区>

有人可以解释为什么这不起作用吗?如果 DoMove 采用结构而不是指针,它会起作用。

package main

import (
"fmt"
)

type Vehicle interface {
Move()
}

type Car interface {
Vehicle
Wheels() int
}

type car struct {}

func (f car) Move() { fmt.Println("Moving...") }
func (f car) Colour() int { return 4 }

func DoMove(v *Vehicle) {
v.Move()
}

func main() {
f := car{}
DoMove(&f)

}

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com