Home > Article > Backend Development > How to Embed Structs with Identical Names in a Go Struct?
Embedding Structs with Identical Names in a Struct
The question focuses on embedding two structs with the same name in a single struct. Typically, attempts to do so result in a duplicate field error, as exemplified by the following code snippet:
type datastore struct { *sql.Store *file.Store }
Type Alias as a Solution
To circumvent this issue, the recommended solution is to utilize a type alias. By assigning an alternative name to one of the embedded structs, the Go compiler distinguishes between the two instances. Consider the following modified code:
type SqlStore = sql.Store // this is a type alias type datastore struct { *SqlStore *file.Store }
In this scenario, SqlStore serves as an alias for the original sql.Store type. Therefore, the embedded fields within datastore are now differentiated as *SqlStore and *file.Store, effectively resolving the duplicate field conflict.
Benefits of a Type Alias
Unlike traditional type declarations, a type alias does not introduce a separate new type. Instead, it simply creates an alternate name for an existing type. As a result, it preserves the original type's behavior and characteristics. By leveraging a type alias, developers can avoid modifying the underlying implementation while maintaining compatibility with external code.
Alternate Options
Apart from type aliases, there are several alternative approaches to achieving the desired functionality:
The above is the detailed content of How to Embed Structs with Identical Names in a Go Struct?. For more information, please follow other related articles on the PHP Chinese website!