Golang-5:関数2


パラメータに構造体を作成するには

package main

import "fmt"

type BlogDto struct {	// "," 없이 구분된다.
	Id    int
	Title string
	Owner string
}

func main() {
	dto := BlogDto{
		Id:    1,
		Title: "Phoenix",
		Owner: "개발조아",
	}

	fmt.Println("내 블로그 소개", BlogProfile(dto))
}

func BlogProfile(dto BlogDto) string {
	return "\nid : " + fmt.Sprint(dto.Id) + "\n제목 : " + dto.Title + "\n필자 : " + dto.Owner
}

Console



あまり違うところはありません.