Las palabras clave o palabras reservadas son las palabras en un idioma que se utilizan para algún proceso interno o representan algunas acciones predefinidas. Por lo tanto, no se permite el uso de estas palabras como identificador. Hacer esto resultará en un error de tiempo de compilación.
Ejemplo:
// Go program to illustrate the // use of keywords package main import "fmt" // Here, package, import, func, // var are keywords func main() { // Here, a is a valid identifier var a = "GeeksforGeeks" fmt.Println(a) // Here, the default is an // illegal identifier and // compiler will throw an error // var default = "GFG" }
Producción:
GeeksforGeeks
Hay un total de 25 palabras clave presentes en el lenguaje Go de la siguiente manera:
descanso |
caso |
chan |
constante |
Seguir |
defecto |
aplazar |
más |
caer a través |
por |
función |
Vamos |
ir |
si |
importar |
interfaz |
mapa |
paquete |
rango |
devolver |
Seleccione |
estructura |
cambiar |
escribe |
variable |
Ejemplo:
// Go program to illustrate // the use of keywords // Here package keyword is used to // include main package in the program package main // import keyword is used to // import "fmt" in your package import "fmt" // func is used to // create function func main() { // Here, var keyword is used // to create variables // Pname, Lname, and Cname // are the valid identifiers var Pname = "GeeksforGeeks" var Lname = "Go Language" var Cname = "Keywords" fmt.Printf("Portal name: %s", Pname) fmt.Printf("\nLanguage name: %s", Lname) fmt.Printf("\nChapter name: %s", Cname) }
Producción:
Portal name: GeeksforGeeks Language name: Go Language Chapter name: Keywords
Publicación traducida automáticamente
Artículo escrito por ankita_saini y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA