{"id":54,"date":"2021-06-22T17:39:19","date_gmt":"2021-06-22T09:39:19","guid":{"rendered":"https:\/\/aisumura.net\/blog\/?p=54"},"modified":"2021-06-22T17:39:50","modified_gmt":"2021-06-22T09:39:50","slug":"golang%e9%9a%a8%e6%89%8b%e7%ad%86%e8%a8%98-struct","status":"publish","type":"post","link":"https:\/\/aisumura.net\/blog\/2021\/06\/22\/golang%e9%9a%a8%e6%89%8b%e7%ad%86%e8%a8%98-struct\/","title":{"rendered":"Golang\u96a8\u624b\u7b46\u8a18 struct"},"content":{"rendered":"\n<h4>\u521d\u59cb\u5316<\/h4>\n\n\n\n<p>\u7528\u96d9\u5f15\u865f\u5e36\u503c\u7684\u65b9\u5f0f\u8a2d\u7f6e\u521d\u503c\u3002<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"go\" class=\"language-go\">package main\n\nimport (\n    \"fmt\"\n)\n\ntype Car struct {\n    model       string\n    horse_power float32\n    toque       int\n}\n\nfunc main() {\n    var mycar Car\n    mycar = Car{\"WRX STi\", 300.8, 407}\n    fmt.Println(mycar)\n    result := fmt.Sprintf(\"My Car is model %s, it has %.1f HP and max toque %d Nm.\", mycar.model, mycar.horse_power, mycar.toque)\n    fmt.Println(result)\n}\n\n<\/code><\/pre>\n","protected":false},"excerpt":{"rendered":"<p>\u521d\u59cb\u5316 \u7528\u96d9\u5f15\u865f\u5e36\u503c\u7684\u65b9\u5f0f\u8a2d\u7f6e\u521d\u503c\u3002<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":[],"categories":[3],"tags":[4],"_links":{"self":[{"href":"https:\/\/aisumura.net\/blog\/wp-json\/wp\/v2\/posts\/54"}],"collection":[{"href":"https:\/\/aisumura.net\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/aisumura.net\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/aisumura.net\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/aisumura.net\/blog\/wp-json\/wp\/v2\/comments?post=54"}],"version-history":[{"count":4,"href":"https:\/\/aisumura.net\/blog\/wp-json\/wp\/v2\/posts\/54\/revisions"}],"predecessor-version":[{"id":178,"href":"https:\/\/aisumura.net\/blog\/wp-json\/wp\/v2\/posts\/54\/revisions\/178"}],"wp:attachment":[{"href":"https:\/\/aisumura.net\/blog\/wp-json\/wp\/v2\/media?parent=54"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/aisumura.net\/blog\/wp-json\/wp\/v2\/categories?post=54"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/aisumura.net\/blog\/wp-json\/wp\/v2\/tags?post=54"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}