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
あまり違うところはありません.
Reference
この問題について(Golang-5:関数2), 我々は、より多くの情報をここで見つけました
https://velog.io/@phoenix/Go-lang-4-함수-2
テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol
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
}
あまり違うところはありません.
Reference
この問題について(Golang-5:関数2), 我々は、より多くの情報をここで見つけました https://velog.io/@phoenix/Go-lang-4-함수-2テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol