0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Go言語_Slice

Posted at

Go言語 Slice

The Go Blog 『Arrays, slices (and strings): The mechanics of 'append'』から

Arrays have their place—they are a good representation of a transformation matrix for instance—but their most common purpose in Go is to hold storage for a slice.

Go言語における配列の最も共通する目的はスライスのストレージを保持するため

A slice is a data structure describing a contiguous section of an array stored separately from the slice variable itself. A slice is not an array. A slice describes a piece of an array.

スライスはスライス自体の変数とは別に保存されている配列の連続するするデータ構造の事です。スライスは配列ではありません、スライスは配列の一部を表現しています。

0
0
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
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?