Go lang - 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
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
}
크게 다른 부분은 없다.
Author And Source
이 문제에 관하여(Go lang - 5 : 함수 2), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@phoenix/Go-lang-4-함수-2저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)