Home > Article > Backend Development > How Can I Access Fields from Embedded Structs Within Inner Methods in Go?
Accessing Outer Fields in Embedded Structures
In Go, embedding structs allows one structure to inherit the fields of another. However, when accessing embedded fields within a method defined on an inner struct, limitations arise. This article addresses this challenge, explaining why direct access is not possible and offering a viable alternative.
Problem
Consider the following code snippet:
<code class="go">type ReqAbstract struct{} func (r *ReqAbstract) Validate() error { log.Printf("%+v", r) return nil } type NewPostReq struct { ReqAbstract</code>
The above is the detailed content of How Can I Access Fields from Embedded Structs Within Inner Methods in Go?. For more information, please follow other related articles on the PHP Chinese website!