Golang 또는 Go에서 변수를 선언하고 초기화하는 방법은 무엇입니까?

5761 단어 go
Originally posted here!

Golang 또는 Go에서 변수를 선언하고 초기화하려면 두 가지 방법이 있습니다.
  • Declare and initialize the variables at the same time using the := operator - The short way
  • Declare variable first and initialize it later - The long way

  • := 연산자를 사용하여 동시에 변수 선언 및 초기화 - 짧은 방법

    To declare and initialize the variable at the same, we can write the name of the variable followed by the := operator and then the value for the variable.

    Golang compiler will automatically infer or analyze the type using the value assigned.

    It can be done like this,

    package main
    
    // Method:
    // Declare and initialize the variables at the
    // same time using the `:=` operator - The short way
    
    import "fmt"
    
    func main() {
        // declare and initialize the
        // varaible using the `:=` operator
        name := "John Doe"
    
        // log to the console
        fmt.Print(name)
    }
    
    See the above code live in The Go Playground .

    변수를 동시에 성공적으로 선언하고 초기화했습니다. 예이 🥳!

    변수를 먼저 선언하고 나중에 초기화

    To declare the variable first we can use the var keyword followed by the name of the variable and then its type. And to initialize the variable with a value you can use the variable name followed by the = operator (assignment operator symbol) and then the value you need to assign to the variable.

    TL;DR




    package main
    
    // Method:
    // Declare variable first and initialize it later - The long way
    
    import "fmt"
    
    func main() {
        // declare variable and its type
        // using the `var` keyowrd
        var name string
    
        // assign a string value to
        // it using the `=` operator
        name = "John Doe"
    
        // log to the console
        fmt.Print(name)
    }
    


    예를 들어 name 유형의 string라는 변수를 만들어야 한다고 가정해 보겠습니다.

    다음과 같이 할 수 있습니다.

    package main
    
    func main()  {
        // declare variable and its type
        // using the `var` keyowrd
        var name string
    }
    


    이제 값으로 초기화하기 위해 = 연산자(할당 연산자)를 사용한 다음 유지해야 하는 값을 입력합니다.

    다음과 같이 할 수 있습니다.

    package main
    
    // Method:
    // Declare variable first and initialize it later - The long way
    
    import "fmt"
    
    func main() {
        // declare variable and its type
        // using the `var` keyowrd
        var name string
    
        // assign a string value to
        // it using the `=` operator
        name = "John Doe"
    
        // log to the console
        fmt.Print(name)
    }
    


    The Go Playground에 있는 위의 코드를 참조하십시오.

    Golang 😃에서 변수를 성공적으로 선언하고 초기화했습니다.

    그게 다야 😃!

    도움이 되셨다면 자유롭게 공유해 주세요 😃.

    좋은 웹페이지 즐겨찾기