Go 또는 Golang에서 둘 이상의 패키지를 가져오는 방법은 무엇입니까?

4193 단어 go
Originally posted here!

Go 또는 Golang에서 둘 이상의 패키지를 가져오려면 import 키워드 다음에 () 기호(여는 괄호 및 닫는 괄호)를 작성하고 괄호 안에 패키지 이름을 ""로 작성할 수 있습니다. ) 기호(큰따옴표)는 공백으로 구분됩니다.

TL;DR




package main

// import the `time` and `fmt` package
import (
    "fmt"
    "time"
)

func main() {
    // get the current time
    // and store it in a variable
    currentTime := time.Now()

    // show the current time to
    // the user in the console
    fmt.Println(currentTime)
}


예를 들어 사용자에게 현재 시간을 표시해야 한다고 가정해 보겠습니다. 이를 위해서는 먼저 timefmt 2개의 패키지를 가져와야 합니다.
fmt 패키지는 콘솔에 기록된 출력을 표시하는 데 사용되며 time 패키지는 시간 작업에 사용됩니다.

먼저 2개의 패키지를 가져오겠습니다.

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

package main

// import the `time` and `fmt` package
import (
    "time"
    "fmt"
)


이제 Now() 패키지의 time 메서드를 사용하여 현재 시간을 가져와서 다음과 같은 변수에 저장해 보겠습니다.

package main

// import the `time` and `fmt` package
import (
    "time"
    "fmt"
)

func main(){
    // get the current time
    // and store it in a variable
    currentTime := time.Now()
}


마지막으로 Println() 패키지의 fmt 메서드를 사용하여 콘솔에서 사용자에게 현재 시간을 보여줍시다.

이렇게 할 수 있습니다.

package main

// import the `time` and `fmt` package
import (
    "fmt"
    "time"
)

func main() {
    // get the current time
    // and store it in a variable
    currentTime := time.Now()

    // show the current time to
    // the user in the console
    fmt.Println(currentTime)
}


Golang에서 하나 이상의 패키지를 성공적으로 가져왔습니다. 예이 🥳.

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

그게 다야 😃!

이 정보가 유용하다고 생각되면 자유롭게 공유하세요 😃.

좋은 웹페이지 즐겨찾기