Reference Types– tag –
-
Tutorials and guides
Day 9. Basic Syntax of Solidity – Reference Types & Mapping Types –
Reference types refer to the memory location where the value is stored, rather than the value itself. Unlike value types, where the value of the data is stored directly in the variable, reference types store only a reference to the location of the data. Reference types hold the position of data in memory, allowing memory usage to be optimized regardless of the data's size. Mapping types are data structures that store key-value pairs. -
Tutorials and guides
day9. Solidity基本文法 – 参照型・マッピング型 –
参照型とは、値そのものではなく、その値が格納されているメモリ位置を指す型です。値型では変数に直接データの値が格納されるのに対して、変数には格納されている位置への参照のみが保存されています。 参照型は、データのメモリ上の位置を保持するため、データの大きさに関係なくメモリの使用を最適化することができます。 マッピング型は、キーと値のペアを格納するデータ構造です。
1