1. 检查切片中是否存在元素

Go 的标准库中没有find或in_array函数。它们很容易创建。在此示例中,我们创建了一个Find()函数,用于在字符串切片中搜索所需的元素。

package main

import (
    "fmt"
)

func main() {

    items := []string{"A", "1", "B", "2", "C", "3"}

    // Missing Example
    _, found := Find(items, "topgoer.com")
    if !found {
        fmt.Println("Value not found in slice")
    }

    //Found example
    k, found := Find(items, "B")
    if !found {
        fmt.Println("Value not found in slice")
    }
    fmt.Printf("B found at key: %d\n", k)
}

// Find获取一个切片并在其中查找元素。如果找到它,它将返回它的密钥,否则它将返回-1和一个错误的bool。
func Find(slice []string, val string) (int, bool) {
    for i, item := range slice {
        if item == val {
            return i, true
        }
    }
    return -1, false
}

results matching ""

    No results matching ""