Home > Backend Development > Golang > Why Does Go's Type Assertion Fail with Type Aliases?

Why Does Go's Type Assertion Fail with Type Aliases?

Barbara Streisand
Release: 2024-12-16 05:47:12
Original
320 people have browsed it

Why Does Go's Type Assertion Fail with Type Aliases?

How to Cast to a Type Alias in Go?

Consider the following Go code:

package main

import "fmt"

type somethingFuncy func(int) bool

func funcy(i int) bool {
    return i%2 == 0
}

func main() {
    var a interface{} = funcy

    _ = a.(func(int) bool)  // Works

    fmt.Println("Awesome -- apparently, literally specifying the func signature works.")

    _ = a.(somethingFuncy)  // Panics

    fmt.Println("Darn -- doesn't get here. But somethingFuncy is the same signature as func(int) bool.")
}
Copy after login

The first type assertion works when explicitly declaring the type as func(int) bool. However, the second one using the type alias somethingFuncy panics.

Explanation

Unlike casting, type assertions in Go strictly compare the actual type of the value being asserted. Therefore, the type alias somethingFuncy, although sharing the same signature as func(int) bool, is considered a distinct type.

Bonus

The type assertion is performed in the following code, which simply compares the types for equality:

func main() {
    var a interface{} = funcy

    switch v := a.(type) {
    case func(int) bool:
        // Type successfully asserted as func(int) bool
    case somethingFuncy:
        // Type successfully asserted as somethingFuncy
    default:
        // Type assertion failed
    }
}
Copy after login

This comparison fails when using the type alias because it requires an exact type match.

The above is the detailed content of Why Does Go's Type Assertion Fail with Type Aliases?. For more information, please follow other related articles on the PHP Chinese website!

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Articles by Author
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template