登录
首页 >  Golang >  Go问答

重复检查直至符合条件

来源:stackoverflow

时间:2024-03-13 22:48:26 321浏览 收藏

有志者,事竟成!如果你在学习Golang,那么本文《重复检查直至符合条件》,就很适合你!文章讲解的知识点主要包括,若是你对本文感兴趣,或者是想搞懂其中某个知识点,就请你继续往下看吧~

问题内容

我已经将其发布在 codereview.stackexchange 上,我认为那里更合适,但没有得到任何反馈,因此我将其发布在可能有更多受众的地方。

我使用此代码进行了一些输入检查。对于任何失败的检查,我需要再次要求正确的输入。我使用 labelsgoto 来实现这一点,但程序员似乎不喜欢它们作为一个概念。

如果没有标签/转到,我怎样才能达到相同的效果?我考虑将所有这些代码放入一个函数中并从内部调用自身,但由于某种原因它只重复一次 - 没有继续询问是否不断得到错误的答案。

// 0 exits
var f float64
var n int
startGame := func() {
reception:
    fmt.Println()
    fmt.Print(`Give number (1-9): `)
    _, err := fmt.Scan(&f)

    // check letters or symbols
    if err != nil {
        fmt.Println("Letters or symbols not accepted")
        goto reception
    }

    // exit
    if f == 0 {
        os.Exit(0)
    }

    // check for integers only
    if f < 1 || f > 9 || f-math.Ceil(f) != 0 {
        fmt.Println("Only integer numbers between 1-9 are accepted")
        goto reception
    }

    n = int(f)
    // check for empty cells
    if myArray[n-1] == false {
        fmt.Println("Empty cell", n)
        goto reception
    }
}

解决方案


如果一切都很好的话,只需使用 for {} continuebreak 即可。像这样:

    startgame := func() {
        for {
            fmt.println()
            fmt.print(`give number (1-9): `)
            _, err := fmt.scan(&f)

            // check letters or symbols
            if err != nil {
                fmt.println("letters or symbols not accepted")
                continue
            }

            // exit
            if f == 0 {
                os.exit(0)
            }

            // check for integers only
            if f < 1 || f > 9 || f-math.ceil(f) != 0 {
                fmt.println("only integer numbers between 1-9 are accepted")
                continue
            }

            if !true {
                fmt.println("empty cell", n)
                continue
            }
            break
        }
    }
    startgame()
    fmt.println("good luck! bye.")
var f float64 = math.MaxFloat32
var n int
for ;f!=0; {
    fmt.Println()
    fmt.Print(`Give number (1-9): `)
    _, err := fmt.Scan(&f)
    // check letters or symbols
    if err != nil {
        fmt.Println("Letters or symbols not accepted")
        continue
    }
    // check for integers only
    if f < 1 || f > 9 || f-math.Ceil(f) != 0 {
        fmt.Println("Only integer numbers between 1-9 are accepted")
        continue
    }

    n = int(f)
    // check for empty cells
    if f > 0 && myArray[n-1] == false {
        fmt.Println("Empty cell", n)
    }
}

上述所有 if 条件也可以设为 else ifs。或者您可以使用继续。

到这里,我们也就讲完了《重复检查直至符合条件》的内容了。个人认为,基础知识的学习和巩固,是为了更好的将其运用到项目中,欢迎关注golang学习网公众号,带你了解更多关于的知识点!

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