Đây có phải dạng thừa kế không?
type TaskResult struct { Value interface{} Error error } type taskResultOK struct { TaskResult OK bool }
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Trong Go gọi là embedded struct. Bạn có thể đọc thêm doc
Đúng vậy, ví dụ đoạn code này sẽ in ra
Hello
: