go 문법(2)
-
GO 언어 문법 (type에 method 추가하기) #3
go version go1.18 windows/amd64 main.go package main import ( "fmt" dict "scraping/typeExample/main/detail" ) func main() { // 이것은 Dictionary에 대한 Constructor가 아님!!!!!! dict := dict.Dictionary{"Donz": "I'm a boy"} dict["hello"] = "I'm find" fmt.Println("Setting :", dict) //-> Setting : map[Donz:I'm a boy hello:I'm find] // Search s, err := dict.Search("Donz") if err != nil { fmt.Println(" Search ..
2022.03.30 -
GO 언어 문법 (struct에 method 추가하기) #2
go version go1.18 windows/amd64 main.go package main import ( "fmt" banking "scraping/structExample/main/detail" ) /* main의 의미 : 컴파일을 위해 필요한 것! 명령어 go run main.go 뜻 1. main package 찾음 2. main function 찾고 실행 */ func main() { // fmt : formattiing 을 위한 패키지, Print의 "P"가 대문자인 이유는 function을 export 하겠다는 의미 fmt.Println("GO 에서 Constructor 와 Method 사용") // [01] GO 에서 Constructor를 만드는 방법 a := banking.NewAc..
2022.03.30