gpt4 book ai didi

去新手: Getting "mismatched types *int and int" error when trying to compare reference to static integer

转载 作者:行者123 更新时间:2023-12-01 22:43:18 24 4
gpt4 key购买 nike

关闭。这个问题是not reproducible or was caused by typos .它目前不接受答案。












想改进这个问题?将问题更新为 on-topic对于堆栈溢出。

2年前关闭。




Improve this question




我正在学习 Go 并尝试在 if 子句中使用对整数值的引用。

package main

import (
"fmt"
)

func main() {
a := 19
b := &a
if b > 10 {
fmt.Println("Its bigger")
}

}

这给出了类型错误的错误消息。
我怎样才能成功比较 b 的值是引用。在我的训练代码中,我正在阅读带有标志的命令行参数,但我想这个例子是 reprex。

当只有引用可用时,我应该如何比较?

最佳答案

这里bint 的指针表示 *int .你无法比较 *int输入 int类型。

使用*b取消引用以获取值,然后与常量值进行比较。

if *b > 10 {
fmt.Println("Its bigger")
}

关于去新手: Getting "mismatched types *int and int" error when trying to compare reference to static integer,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61438526/

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