Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Lernen Constants | Section
Getting Started with Go

bookConstants

Swipe um das Menü anzuzeigen

Constants are similar to variables, but once declared and initialized, their value cannot be altered, which is why they are called "constants."

The syntax for declaring a constant is similar to that of a variable. However, in this case, we use the keyword const instead of var.

Note

The := operator cannot be used for declaring constants as it is reserved solely for variable declarations.

If we attempt to modify the value of constants, the compiler may produce an error, as illustrated in the following code:

index.go

index.go

copy
12345678
package main import "fmt" func main() { const value = 5 value = 7 // Error expected at this line fmt.Println(value) }

Constants are employed for storing values that are frequently utilized throughout the program and are intended to remain unaltered. These may include mathematical constants, configuration values, or system limits.

Effectively utilizing constants can reduce the likelihood of errors, such as modifying values that should remain constant. Additionally, it enhances code readability and comprehensibility for readers by clearly indicating which values remain constant throughout the program.

War alles klar?

Wie können wir es verbessern?

Danke für Ihr Feedback!

Abschnitt 1. Kapitel 5

Fragen Sie AI

expand

Fragen Sie AI

ChatGPT

Fragen Sie alles oder probieren Sie eine der vorgeschlagenen Fragen, um unser Gespräch zu beginnen

Abschnitt 1. Kapitel 5
some-alt