유형 어설션을 위해 함수에 유형 변수 전달
유형을 함수에 전달하여 유형 어설션을 수행하려고 합니다. 기본적으로 다음을 달성하는 것이 목표입니다.
<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 중국어 웹사이트의 기타 관련 기사를 참조하세요!