How to use string enum with method as generic parameter?
php editor Youzi is here to introduce how to use string enumeration with methods as generic parameters. In programming, we often need to use generics to increase the flexibility and reusability of code. Using string enumerations with methods as generic parameters can make our code more concise and efficient. Next, we will elaborate on how to implement this function and give specific example code. Let’s explore this interesting programming technique together!
Question content
I have multiple string-derived enumerations that share a common validate()
method (all beyond my control). I want a generic method that converts strings to these enums and calls validate()
on the resulting enums. I tried using generics to achieve this but failed for various reasons.
In the following example, the type constraint is too strong and validate()
cannot be called. I also tried using the validate()
method to insert my own interface and use it as a type constraint, but then it failed on the type conversion part.
How to achieve this without modifying the enum?
package main // imagine i have multiple of those types outside of my control type FooStatusEnum string func NewFooStatusEnum(value FooStatusEnum) *FooStatusEnum { return &value } const ( FooStatusEnumA FooStatusEnum = "A" FooStatusEnumB FooStatusEnum = "B" FooStatusEnumC FooStatusEnum = "C" ) func (m FooStatusEnum) Validate() error { return nil } func stringToValidatedEnum[E ~string](s string) E { e := E(s) if err := e.Validate(); err != nil { panic(1) } return e } func main() { stringToValidatedEnum[FooStatusEnum]("A") e := FooStatusEnum("A") e.Validate() }
Solution
Use type constraints specifying the string
base type and validate()
method:
type enumstring interface { ~string validate() error } func stringtovalidatedenum[e enumstring](s string) e { e := e(s) if err := e.validate(); err != nil { panic(1) } return e }
Test it:
result := stringtovalidatedenum[foostatusenum]("a") fmt.printf("%t %v", result, result)
This will output (try it on go playground):
main.FooStatusEnum A
The above is the detailed content of How to use string enum with method as generic parameter?. For more information, please follow other related articles on the PHP Chinese website!

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

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

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

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

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

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

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.

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
