Q:

Golang program to parse a command line flag of integer type

0

In this program, we will pass the integer type flag from the command line during program execution and then print the value of the specified flag on the console screen.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Program/Source Code:

The source code to parse a command line flag of integer type is given below. The given program is compiled and executed on the ubuntu 18.04 operating system successfully.

// Golang program to parse a
// command line flag of integer type

package main

import "fmt"
import "flag"

func main() {
	PtrInt := flag.Int("luckyNum", 786, "an int")

	fmt.Println("Default value of lucky number: ", *PtrInt)
	flag.Parse()

	fmt.Println("Value of lucky number: ", *PtrInt)
}

Output:

$ go run hello.go -luckyNum=123

Default value of lucky number:  786
Value of lucky number:  123

Explanation:

In the above program, we declare the package main. The main package is used to tell the Go language compiler that the package must be compiled and produced the executable file. Here, we imported the fmtflag packages then we can use a function related to the fmt and flag package.

In the main() function, we passed the integer type flag from the command line during program execution and then parse the command line flag luckyNum using the flag.Int()flag.Parse() functions and printed the default and actual value of the specified flag on the console screen.

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Golang program to parse multiple command-line flag... >>
<< Golang program to parse a command line flag of str...