>백엔드 개발 >Golang >Go에서 유형 어설션을 위해 유형 변수를 함수에 전달하는 방법은 무엇입니까?

Go에서 유형 어설션을 위해 유형 변수를 함수에 전달하는 방법은 무엇입니까?

DDD
DDD원래의
2024-10-30 22:24:30282검색

How to Pass Type Variables to Functions for Type Assertions in Go?

유형 어설션을 위해 함수에 유형 변수 전달

유형을 함수에 전달하여 유형 어설션을 수행하려고 합니다. 기본적으로 다음을 달성하는 것이 목표입니다.

<code class="go">// Note that this is pseudocode, because Type isn't valid here
func myfunction(mystring string, mytype Type) {
    ...

    someInterface := translate(mystring)
    object, ok := someInterface.(mytype)

    ...  // Do other stuff
}

func main() {
    // Desired function call
    myfunction("hello world", map[string]string)
}</code>

myfunction에서 유형 어설션을 성공적으로 수행하려면 다음 함수 선언을 사용하십시오.

<code class="go">package main

import "reflect"

func myfunction(v interface{}, mytype interface{}) bool {
    return reflect.TypeOf(v) == reflect.TypeOf(mytype)
}

func main() {
    assertNoMatch := myfunction("hello world", map[string]string{})
    fmt.Printf("%+v\n", assertNoMatch) // false

    assertMatch := myfunction("hello world", "stringSample")
    fmt.Printf("%+v\n", assertMatch) // true
}</code>

이 접근 방식에는 유형의 샘플을 사용하는 것이 포함됩니다. 성공적인 유형 어설션을 위해 유형이 동일한지 확인하여 일치시키려고 합니다.

위 내용은 Go에서 유형 어설션을 위해 유형 변수를 함수에 전달하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.