Golang : Get constant name from value
Problem :
How to find out the constant name associated with a value? For example, if the a constant value is fixed to an integer during compile time. How does one find out the associated constant name just by processing the integer value during run time ?
Solution :
Use switch
statement to return the constant name.
NOTE : Not really an efficient and scalable solution, but it should work for small set of data
package main
import (
"fmt"
)
type wordInt int16
const (
HELLO = wordInt(1)
WORLD = wordInt(2)
HOW = wordInt(3)
ARE = wordInt(4)
YOU = wordInt(5)
)
func (w wordInt) String() string {
switch w {
case 1:
return "HELLO"
case 2:
return "WORLD"
case 3:
return "HOW"
case 4:
return "ARE"
case 5:
return "YOU"
}
// else return
return "NOT Defined"
}
func main() {
fmt.Printf("The constant name associated with integer %d is %s \n", 1, wordInt(1).String())
// can do without String() as well
fmt.Printf("The constant name associated with integer %d is %s \n", 2, wordInt(2))
fmt.Printf("The constant name associated with integer %d is %s \n", 3, wordInt(3))
fmt.Printf("The constant name associated with integer %d is %s \n", 5, wordInt(5))
fmt.Printf("The constant name associated with integer %d is %s \n", 9, wordInt(9))
}
Output :
The constant name associated with integer 1 is HELLO
The constant name associated with integer 2 is WORLD
The constant name associated with integer 3 is HOW
The constant name associated with integer 5 is YOU
The constant name associated with integer 9 is NOT Defined
Reference :
See also : Golang : How to get struct field and value by name
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+5.3k Golang : Detect words using using consecutive letters in a given string
+15.9k Golang : convert string or integer to big.Int type
+19.6k Golang : How to get time from unix nano example
+5.1k Javascript : How to loop over and parse JSON data?
+5.5k Javascript : How to replace HTML inside <div>?
+13.2k Golang : How to get year, month and day?
+11.7k Golang : Detect user location with HTML5 geo-location
+11.8k Golang : Perform sanity checks on filename example
+11.2k Golang : Generate DSA private, public key and PEM files example
+5.8k Fix ERROR 2003 (HY000): Can't connect to MySQL server on 'IP address' (111)