LoginSignup
0
2

More than 1 year has passed since last update.

GoでWebサーバーを作成する2

Posted at

はじめに

GolangでAPIサーバーを作るときに調べたことを自分用のメモとしてまとめます。

文法関連

  • 命名規則
    他パッケージからアクセスできるものは先頭大文字にする

他言語プログラマが最低限、気にすべきGoのネーミングルール
Golangでの命名規則におけるベストプラクティス

【Go】基本文法④(配列・スライス)

  • 連想配列
    配列の要素の指定が数字だったのが、keyで指定できるようになったやつ。
以下は要素の指定がstring型のkeyで、要素がstringということ
map[string]string

【Go】基本文法⑤(連想配列・ Range)

引っかかったエラー

1.構造体の宣言に関するエラー
変数の宣言方法がよくわからなくてエラーになった
Error: struct Type is not an expression
2.パッケージのimportに関するエラー
お互いにパッケージをimportしてはいけないよというエラー
Golang で import cycle not allowed に引っかかった人へ

0
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
2