"Go boolPtr()"의 두 판 사이의 차이

잔글 (Jmnote님이 Go boolPtr 문서를 Go boolPtr() 문서로 이동했습니다)
(차이 없음)

2024년 11월 10일 (일) 19:51 판

개요

package main

import "fmt"

func boolPtr(b bool) *bool {
    return &b
}

func main() {
    truePtr := boolPtr(true)
    falsePtr := boolPtr(false)

    fmt.Println("truePtr:", *truePtr)
    fmt.Println("falsePtr:", *falsePtr)
}
문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}