


php editor Strawberry introduces you to a general structure of a specific field, which is used to pass access to variable parameter functions. A variadic function is a function that accepts a variable number of parameters, but in practical applications, we often need to pass the values of specific fields to these functions. With this general structure, we can easily pass access to variadic functions and specify the value of a specific field, allowing for more flexible and precise parameter passing. This common structure can greatly simplify our code and improve its readability and maintainability.
Question content
Suppose I have a generic struct
named foo
:
type foo[t any] struct { data t }
I have a variadic function and I want to pass some foo
s to it. They can be of any type foo
. My understanding is that because foo[int]
is not the same as foo[string]
, I need to define the ellipsis as type any
like this:
func bar(things ...any) { for _, v := range things { fmt.println(v) } }
This actually works.
func main() { a := foo[string]{"cheese"} b := foo[int]{42} bar(a, b) }
My problem is that I want to specifically access the data
fields in each foo
. But if I define bar
like this,
func bar(things ...any) { for _, v := range things { fmt.println(v.data) } }
The compiler will understandably get upset, because things
could be anything, so they are not guaranteed to have data
fields.
I know there will be a field called data
because I always pass foo
s, but I can't specify that I only pass foo
s, like this,
func bar(things ...foo) { for _, v := range things { fmt.Println(v.data) } }
Because the type of foo
is not specified.
How do I pass an unspecified amount of foo
to bar
and then access the data
field?
Workaround
One solution seems to be to use reflection and access the field using fieldbyname
:
func bar(things ...any) { for _, v := range things { x := reflect.ValueOf(v) fmt.Println(x.FieldByName("data")) } }
I don't know if this would be considered a hindrance and/or danger for some reason. Presumably I need to do some checking in there to make sure everything in things
is actually some kind of foo
, otherwise I might be trying to access a field that doesn't exist.
The above is the detailed content of Access specific fields of a generic structure passed to a variadic function. For more information, please follow other related articles on the PHP Chinese website!

The article explains how to use the pprof tool for analyzing Go performance, including enabling profiling, collecting data, and identifying common bottlenecks like CPU and memory issues.Character count: 159

The article discusses writing unit tests in Go, covering best practices, mocking techniques, and tools for efficient test management.

This article demonstrates creating mocks and stubs in Go for unit testing. It emphasizes using interfaces, provides examples of mock implementations, and discusses best practices like keeping mocks focused and using assertion libraries. The articl

This article explores Go's custom type constraints for generics. It details how interfaces define minimum type requirements for generic functions, improving type safety and code reusability. The article also discusses limitations and best practices

The article discusses Go's reflect package, used for runtime manipulation of code, beneficial for serialization, generic programming, and more. It warns of performance costs like slower execution and higher memory use, advising judicious use and best

This article explores using tracing tools to analyze Go application execution flow. It discusses manual and automatic instrumentation techniques, comparing tools like Jaeger, Zipkin, and OpenTelemetry, and highlighting effective data visualization

The article discusses using table-driven tests in Go, a method that uses a table of test cases to test functions with multiple inputs and outcomes. It highlights benefits like improved readability, reduced duplication, scalability, consistency, and a

The article discusses managing Go module dependencies via go.mod, covering specification, updates, and conflict resolution. It emphasizes best practices like semantic versioning and regular updates.


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Dreamweaver CS6
Visual web development tools

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

Dreamweaver Mac version
Visual web development tools
