Home  >  Article  >  Backend Development  >  How to Access Fields of an Embedded Struct within a Containing Struct Method?

How to Access Fields of an Embedded Struct within a Containing Struct Method?

DDD
DDDOriginal
2024-11-01 09:39:02254browse

How to Access Fields of an Embedded Struct within a Containing Struct Method?

Accessing Embedded Struct Fields

The question arises when trying to access fields of an embedded struct within a method defined on the containing struct. Consider the following code:

<code class="go">import "log"

type ReqAbstract struct{}

func (r *ReqAbstract) Validate() error {
    log.Printf("%+v", r)
    return nil
}

func (r *ReqAbstract) Validate2(req interface{}) error {
    log.Printf("%+v", req)
    return nil
}

type NewPostReq struct {
    ReqAbstract</code>

The above is the detailed content of How to Access Fields of an Embedded Struct within a Containing Struct Method?. For more information, please follow other related articles on the PHP Chinese website!

Statement:
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