Heim > Artikel > Backend-Entwicklung > Befehlszeilenparameter im Golang-Programm werden nicht korrekt als Parameter akzeptiert
Wenn der PHP-Editor Baicao Golang-Programme entwickelt, stößt er manchmal auf das Problem, dass Befehlszeilenparameter nicht korrekt als Parameter akzeptiert werden. Dieses Problem kann dazu führen, dass das Programm nicht ordnungsgemäß ausgeführt wird oder keine korrekten Eingabedaten erhält. Um dieses Problem zu lösen, müssen wir den Befehlszeilenparameterverarbeitungsteil des Programms sorgfältig überprüfen, um sicherzustellen, dass die Parameter korrekt empfangen und im Programm korrekt verwendet werden. In diesem Artikel werden einige häufige Fehlerursachen und Lösungen vorgestellt, um Entwicklern dabei zu helfen, Befehlszeilenparameter besser zu handhaben.
Ich bin neu bei Golang und folge einem Online-Tutorial zum Erstellen einer einfachen Quizanwendung mit dem Befehlszeilenterminal. Wenn ich den Code jedoch nach der ersten Frage auf meinem Computer ausführe, kommen die restlichen Fragen paarweise und meine Antwort wird nicht mehr für jede Frage akzeptiert.
Screenshot-Beispiel:
Der Ablauf des Programms ist sehr einfach -
CSV-Dateien sind auch sehr kurz -
70+22,92 63+67,130 91+72,163 74+61,135 81+6,87
Das ist das komplette Programm -
package main import ( "encoding/csv" "flag" "fmt" "os" "time" ) func main() { // 1. input the name of the file fName := flag.String("f", "quiz.csv", "path of csv file") // 2. set the duration of timer timer := flag.Int("t", 30, "timer for the quiz") flag.Parse() // 3. pull the problems from the file (calling our problem puller) problems, err := problemPuller(*fName) // 4. handle the error if err != nil { exit(fmt.Sprintf("something went wrong: %s", err.Error())) } // 5. create a variable to count our correct answers correctAns := 0 // 6. using the duration of the timer, we want to initialize the timer tObj := time.NewTimer(time.Duration(*timer) * time.Second) ansC := make(chan string) // 7. loop through the problems, print the questions, we'll accept the answers problemLoop: for i, p := range problems { var answer string fmt.Printf("Problem %d: %s =", i+1, p.question) go func() { fmt.Scanf("%s", &answer) ansC <- answer }() select { case <- tObj.C: fmt.Println() break problemLoop case iAns := <- ansC: if iAns == p.answer { correctAns++ } if i == len(problems)-1 { close(ansC) } } } // 8. calculate and print out the result fmt.Printf("Your result is %d out of %d\n", correctAns, len(problems)) fmt.Printf("Press enter to exit") <- ansC } func problemPuller(fileName string) ([]problem, error) { // read all the problems from the quiz.csv // 1. open the file if fObj, err := os.Open(fileName); err == nil { // 2. we will create new reader csvR := csv.NewReader(fObj) // 3. it will need to read the file if cLines, err := csvR.ReadAll(); err == nil { // 4. call the parseProblem function return parseProblem(cLines), nil } else { return nil, fmt.Errorf("error in reading data in csv from %s file; %s", fileName, err.Error()) } } else { return nil, fmt.Errorf("error in opening the file %s file; %s", fileName, err.Error()) } } func parseProblem(lines [][]string) []problem { // go over the lines and parse them based on the problem struct r := make([] problem, len(lines)) for i := 0; i < len(lines); i++ { r[i] = problem { question: lines[i][0], answer: lines[i][1], } } return r } type problem struct { question string answer string } func exit(msg string) { fmt.Println(msg) os.Exit(1) }
Ich habe jede Codezeile ausprobiert, kann sie aber nicht lösen. Kann jemand darauf hinweisen, was ich falsch mache?
Ich kann das Problem unter Windows reproduzieren (läuft 命令提示符
). Aber unter Linux gibt es kein Problem.
Die folgenden Änderungen werden das Problem beheben:
go func() { - fmt.Scanf("%s", &answer) + fmt.Scanln(&answer) ansC <- answer }()
Dies ist ein bekanntes Problem, das als fmt: scanf funktioniert unterschiedlich unter Windows und Linux #23562 gemeldet wird. Es gibt eine weitere ausstehende Lösung. Leider hat cl ungelöste Kommentare und ist seit langem gesperrt.
Das obige ist der detaillierte Inhalt vonBefehlszeilenparameter im Golang-Programm werden nicht korrekt als Parameter akzeptiert. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!