gpt4 book ai didi

Golang 的 bool 类型

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

如何从函数返回 true 或 false 然后检查它。此代码返回错误:不匹配的类型 func() bool 和 bool

func d() bool {
var e bool
return e
}

if d == true {
fmt.Printf("true")
}

最佳答案

您将实际函数与 true 进行比较,而不是函数结果,您需要调用该函数,例如

func d() bool {
var e bool
return e
}

if d() {
fmt.Printf("true")
}

关于Golang 的 bool 类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40568208/

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