Control statements are used to control program flow in Go, including sequential statements (if/switch), selection statements (for/while/range) and loop statements (break/continue). In addition, in actual combat scenarios, based on the shopping list input by the user, control statements can be used to group items by category, such as dairy products, staple foods, fruits, meat, etc.
The art of control statements in Golang code
Control statements are crucial in programming and are used to control the flow of program execution. The Go language provides a rich set of control statements, including sequence statements, selection statements and loop statements.
Sequential Statement
- if statement: is used to execute a block of code that depends on whether a condition is true. For example:
if x > 0 { // x 为正数 } else { // x 不是正数 }
- switch statement: is used to execute a code block based on value matching. For example:
switch x { case 0: // x 为 0 case 1: // x 为 1 default: // x 不是 0 或 1 }
Select statement
- for loop: Repeatedly execute the code block until the condition is false. For example:
for i := 0; i < 10; i++ { // 执行代码块 }
- while loop: Repeatedly executes a block of code as long as the condition is true. For example:
while x > 0 { // 执行代码块 x-- }
- range Loop: Loop through the elements in the collection and execute a block of code for each element. For example:
for k, v := range m { // k 为键,v 为值 }
Loop statement
- break statement: Exit the loop immediately. For example:
for i := 1; i <= 10; i++ { if i == 5 { break } }
- continue statement: Skip the current loop iteration and continue to the next iteration. For example:
for i := 1; i <= 10; i++ { if i % 2 == 1 { continue } // 只执行偶数 }
Practical case
Consider the following scenario: processing user input, which contains a shopping list. We want to group the items in the list into categories.
Code:
package main import ( "fmt" "strconv" "strings" ) func main() { var input string fmt.Print("输入购物清单(以逗号分隔):") fmt.Scanln(&input) categories := make(map[string][]string) for _, item := range strings.Split(input, ",") { item = strings.TrimSpace(item) category := getCategory(item) categories[category] = append(categories[category], item) } for category, items := range categories { fmt.Println(category) for _, item := range items { fmt.Println(" ", item) } } } func getCategory(item string) string { switch { case strings.Contains(item, "牛奶") || strings.Contains(item, "鸡蛋"): return "乳制品" case strings.Contains(item, "面包") || strings.Contains(item, "大米"): return "主食" case strings.Contains(item, "苹果") || strings.Contains(item, "香蕉"): return "水果" case strings.Contains(item, "鱼") || strings.Contains(item, "肉"): return "肉类" default: return "其他" } }
In this example, we use a series of if statements to classify items into different categories, and a for loop to iterate through the input List and print results.
The above is the detailed content of The art of control statements in Golang code. For more information, please follow other related articles on the PHP Chinese website!

Go's "strings" package provides rich features to make string operation efficient and simple. 1) Use strings.Contains() to check substrings. 2) strings.Split() can be used to parse data, but it should be used with caution to avoid performance problems. 3) strings.Join() is suitable for formatting strings, but for small datasets, looping = is more efficient. 4) For large strings, it is more efficient to build strings using strings.Builder.

Go uses the "strings" package for string operations. 1) Use strings.Join function to splice strings. 2) Use the strings.Contains function to find substrings. 3) Use the strings.Replace function to replace strings. These functions are efficient and easy to use and are suitable for various string processing tasks.

ThebytespackageinGoisessentialforefficientbyteslicemanipulation,offeringfunctionslikeContains,Index,andReplaceforsearchingandmodifyingbinarydata.Itenhancesperformanceandcodereadability,makingitavitaltoolforhandlingbinarydata,networkprotocols,andfileI

Go uses the "encoding/binary" package for binary encoding and decoding. 1) This package provides binary.Write and binary.Read functions for writing and reading data. 2) Pay attention to choosing the correct endian (such as BigEndian or LittleEndian). 3) Data alignment and error handling are also key to ensure the correctness and performance of the data.

The"bytes"packageinGooffersefficientfunctionsformanipulatingbyteslices.1)Usebytes.Joinforconcatenatingslices,2)bytes.Bufferforincrementalwriting,3)bytes.Indexorbytes.IndexByteforsearching,4)bytes.Readerforreadinginchunks,and5)bytes.SplitNor

Theencoding/binarypackageinGoiseffectiveforoptimizingbinaryoperationsduetoitssupportforendiannessandefficientdatahandling.Toenhanceperformance:1)Usebinary.NativeEndianfornativeendiannesstoavoidbyteswapping.2)BatchReadandWriteoperationstoreduceI/Oover

Go's bytes package is mainly used to efficiently process byte slices. 1) Using bytes.Buffer can efficiently perform string splicing to avoid unnecessary memory allocation. 2) The bytes.Equal function is used to quickly compare byte slices. 3) The bytes.Index, bytes.Split and bytes.ReplaceAll functions can be used to search and manipulate byte slices, but performance issues need to be paid attention to.

The byte package provides a variety of functions to efficiently process byte slices. 1) Use bytes.Contains to check the byte sequence. 2) Use bytes.Split to split byte slices. 3) Replace the byte sequence bytes.Replace. 4) Use bytes.Join to connect multiple byte slices. 5) Use bytes.Buffer to build data. 6) Combined bytes.Map for error processing and data verification.


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

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

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.

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software
