golang【制御構文】ifの使い方サンプル(基本)

Go言語
	//判定フラグの設定(任意にtrue/falseに変更して動作を確認できる)
	boolIfSwitch := true
	//boolIfSwitch := false

	//条件に合致したら処理
	if boolIfSwitch == true {
		fmt.Printf("boolIfSwitch=%v\n", boolIfSwitch)
	}

	//条件に合致する場合+合致しない場合も処理する
	if boolIfSwitch == true {
		fmt.Printf("boolIfSwitch=%v\n", boolIfSwitch)
	} else {
		fmt.Printf("boolIfSwitch=%v\n", boolIfSwitch)
	}

タイトルとURLをコピーしました