Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

Which pitfalls should be paid attention to when learning Golang language for beginners?

2025-04-03 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/02 Report--

This article mainly introduces "which pits need to be paid attention to when learning Golang language". In daily operation, I believe that many people have doubts about which pits they need to pay attention to when learning Golang language. The editor consulted all kinds of materials and sorted out simple and easy-to-use methods of operation. I hope it will be helpful to answer the doubts of "beginners learning Golang language need to pay attention to which pits". Next, please follow the editor to study!

Basic syntax of GO language

I will not elaborate on the basic syntax of go here. You can check out this article and learn the detailed syntax of Go: http://www.runoob.com/go/go-basic-syntax.html.

It is best to type it out one by one against the above example, so that the effect is best.

The following is the basic structure of a Go program, including (package declaration, introduction package, function, etc.)

Package main / / defines the package name, and package main represents a program that can be executed independently, and each Go application contains a package named main. Import "fmt" / / imports the entry function of the package (or other element) func main () {/ / program that you need to use. The main function must be included in every executable program, and it is generally the first function to be executed after startup. Fmt.Println ("Hello, World!")} GO language attention pits

No matter what you learn, you will encounter all kinds of pitfalls at the beginning. Here is a summary of the various pitfalls encountered in the process of learning the go language.

1. People who write C # will put "{" on a separate line, but this is an error in go. "{" must be on the same line. I made this mistake the first time I wrote go, and I don't know where it is.

Func main () {fmt.Println ("Hello, World!")}

2. If... The else in the else statement must be on the same line as the'}'of if, otherwise there will be a compilation error

Var an int = 30 if a < 20 {fmt.Print ("axiom 20")}

3. The definition of the package name. You must declare the package name in the first line of the source file that is not commented, such as: package main. Package main represents a program that can be executed independently, and each Go application contains a package called main.

Package main

4. In a Go program, a line represents the end of a statement. Each statement does not need to end with a semicolon like other languages in the C family, because the work will be done automatically by the Go compiler.

If you plan to write multiple statements on the same line, you must use it; artificially distinguish, but in actual development we do not encourage this practice.

Fmt.Println ("Hello, World!") Fmt.Println ("www.fpeach.com")

5. The main () function is a must for every executable program, and is generally the first function to be executed after startup. However, there can be only one main () function in each package, otherwise it will report main redeclared in this block previous declaration at.. Donovan's mistake.

Package main import "fmt" func main () {/ * this is my first simple program * / fmt.Println ("Hello, World!")}

6 when functions, structures, and other identifiers begin with an uppercase letter, such as GetInfo, then objects using this form of identifier can be used by external package code, which is called export (like public in an object-oriented language); identifiers that start with lowercase letters are not visible outside the package, but they are visible and available inside the entire package (like protected in an object-oriented language).

/ / the public function, which can be used by the code of the external package func Test () {. . . } / / Private function, the inside of the package is visible, func test2 () {. . . }

7. Identifiers are used to name variables, types, and other program entities. An identifier is actually a sequence of one or more letters (AbeliZ and axiz) numbers (0,9) and underscores _, but the first character must be a letter or underscore, not a number.

The following are invalid identifiers:

1ab (starts with a number)

Case (keyword of Go language)

Aaccounb (operator is not allowed)

8. Error no new variables on left side of: =, which means, "there is not a single new variable on the left!"

Func main () {var b int = 20 b: = 30 fmt.Print (b)}

The solution is: for xonomer yizhuangfu. In this form, just name one of the variables as new.

9. Variables cannot be initialized and assigned using the + + self-increment or-- self-subtraction operators

Package main import "fmt" func main () {var an int = 10 var b int = ahe + var c int = 20c = ahe + fmt.Print (a, b, c)} so far, the study of "which pits to pay attention to for beginners of Golang language" is over, hoping to solve everyone's doubts. The collocation of theory and practice can better help you learn, go and try it! If you want to continue to learn more related knowledge, please continue to follow the website, the editor will continue to work hard to bring you more practical articles!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report