golang【制御構文】switchの使い方(基本)

Go言語
	//判定値の設定(任意に変更して動作を確認できる)
	var intSwtichFlg int
	intSwtichFlg = 0
	//intSwtichFlg = 1
	//intSwtichFlg = 2
	//intSwtichFlg = 99999

	//switch [比較値]
	switch intSwtichFlg {
	//case [条件]:
	case 0:
		fmt.Printf("Case0 の処理実行 intSwtichFlg=%v\n", intSwtichFlg)
	case 1:
		fmt.Printf("Case1 の処理実行 intSwtichFlg=%v\n", intSwtichFlg)
	case 2:
		fmt.Printf("Case2 の処理実行 intSwtichFlg=%v\n", intSwtichFlg)
	default:
		fmt.Printf("Case条件に該当しない場合の処理実行 intSwtichFlg=%v\n", intSwtichFlg)
	}
タイトルとURLをコピーしました