전체보기(316)
-
[2019.03.08] Go lang (Html template)
htmlTemplate.html{{ .Title }}{{ .Description }} Gopackage main import "net/http"import "html/template" type PageTemplate struct { Title string Description string} func indexHandler(writer http.ResponseWriter, reader *http.Request) { pageTemplate := PageTemplate{Title: "index", Description: "This is index page"} template, _ := template.ParseFiles("htmlTemplate.html") template.Execute(writer, page..
2019.03.08 -
[2019.03.08] Go lang (Map, Defer, Panic, Recover)
Mapmap[string]int 는 참조 타입이므로 make를 해줘야한다.make(map[string]int)package main import "fmt" func main() { grades := make(map[string]int) grades["math"] = 90 grades["korean"] = 85 grades["english"] = 80 fmt.Println(grades) fmt.Println(grades["korean"]) for class, grade := range grades { fmt.Println(class, " : ", grade) }} defer= 함수가 어떤 방식으로 끝나든 일단 끝나면 한다. = 함수를 한번 감싸서 끝나는 시점에 호출함package main import "f..
2019.03.08 -
[2019.03.08] Go lang (웹 크롤링, JSON)
웹 크롤링package main import ( "fmt" "io/ioutil" "net/http") func main() { resp, _ := http.Get("https://www.daum.net/") bytes, _ := ioutil.ReadAll(resp.Body) fmt.Println(string(bytes)) resp.Body.Close()} JSON 데이터 가져오기주의 * struct 안의 멤버 변수이름이 대문자로 시작해야지 Unmarshal이 된다.marshal : json -> byte[] unmarshal : byte[] -> json package main import ( "encoding/json" "fmt" "io/ioutil" "net/http") // A People stru..
2019.03.08 -
[2019.03.08] Go lang (Struct)
Class가 없음 type struct 로 대체- 키워드를 줄이기 위해서 용어를 하나로 통일한 듯- 생성자도 자동으로 지원- 메소드는 네임스페이스 방식처럼 알려줘서 지원함 package main import "fmt" type car struct { runTime uint16 runSpeed uint16} func (carTemp car) calcRunningDistance() float64 { return float64(carTemp.runTime * carTemp.runSpeed)} func main() { carA := car{runTime: 100, runSpeed: 60} carB := car{runTime: 200} carC := car{100, 80} fmt.Println(carA.runTi..
2019.03.08 -
[2019.03.08] Go lang (서버 제작)
간단한 웹서버 제작package main import "fmt"import "net/http" func indexHandler(writer http.ResponseWriter, reader *http.Request) { fmt.Fprintf(writer, "index page")} func aboutHandler(writer http.ResponseWriter, reader *http.Request) { fmt.Fprintf(writer, "about page")} func main() { http.HandleFunc("/", indexHandler) http.HandleFunc("/index", indexHandler) http.HandleFunc("/about", aboutHandler) http.L..
2019.03.08 -
[2019.03.08] Go lang (기본 - 타입, 함수, 포인터, 루프)
Hello worldpackage main import "fmt" func main(){ fmt.Println("Helloworld")} 패키지 임포트package main import "fmt"import "math" func main() { fmt.Println("root 4 : ", math.Sqrt(4))} package main import "fmt"import "math/rand" func main(){ fmt.Println("random : ", rand.Intn(100))} 변수package main import "fmt" func add(x float64, y float64) float64{ return x+y} func main(){ var num1 float64 = 1.3 var nu..
2019.03.08