Go lang - 6 : 함수 3
다중 반환값
Go 에서 함수는 다중 반환값을 허용한다!
조금 생소하지만 편리해 보인다.
package main
import "fmt"
type BlogDto struct {
Id int
Title string
Owner string
}
func main() {
dto := BlogDto{
Id: 1,
Title: "Phoenix",
Owner: "개발조아",
}
profile, comment := BlogProfile(dto)
fmt.Println("내 블로그 소개", profile, comment)
}
func BlogProfile(dto BlogDto) (string, string) {
return "\nid : " + fmt.Sprint(dto.Id) + "\n제목 : " + dto.Title + "\n필자 : " + dto.Owner,
"\n\n화이팅 합시다!"
}
Console
Author And Source
이 문제에 관하여(Go lang - 6 : 함수 3), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@phoenix/Go-lang-6-함수-3저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)