Quantcast
Channel: 4月, 2021 | mebee
Viewing all articles
Browse latest Browse all 10

go言語 配列を作成する

$
0
0

go言語で、配列を作成するサンプルコードを記述してます。go言語のバージョンは1.15.4を使用してます。

環境

  • OS windows10 pro 64bit
  • go言語 1.15.4

配列を作成

go言語では、配列は要素を数を指定する必要があります。

package main

import "fmt"

func main() {

	var arr [2]string

	arr[0] = "hello"
	arr[1] = "world"

	fmt.Println(arr[0], arr[1]) // hello world

	fmt.Println(arr) // [hello world]

}

また、以下のように記述することも可能です。

package main

import "fmt"

func main() {

	var arr [2]string = [2]string{"hello", "world"}

	fmt.Println(arr[0], arr[1]) // hello world

	fmt.Println(arr) // [hello world]

}

要素数を省略して、記述することも可能です。

package main

import "fmt"

func main() {

	arr := [...]string{"hello", "world"}

	fmt.Println(arr[0], arr[1]) // hello world

	fmt.Println(arr) // [hello world]

}
The post go言語 配列を作成する first appeared on mebee.

Viewing all articles
Browse latest Browse all 10

Trending Articles