storage引入

storage属性是一种引用类型。在如下的合约中,定义了动态长度数组arrx,arrx存储在以太坊虚拟机storage空间中的变量。
当调用test方法之后,定义了变量uint[] Z。这个时候,如果我们在remix浏览器中进行编译,我们会看到一个警告。因为默认的情况下,对于动态数组
会加上storage属性。也就是:uint[] storage x。storage属性是一种引用类型,其引用了以太坊虚拟机storage空间中的状态变量。而不是对于值的拷贝

因此,在test函数中,当修改了Z的长度和Z的内容之后,再次查看arrx的长度和内容,会发现对应发生了变化。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
pragma solidity ^0.4.23;


contract storageStart{

   uint[] public arrx=[1,2,3,4,5];



   function test()  public{
       uint[]  Z = arrx;

       Z[0] = 100;

       Z.length = 10;
   }

   function getLength()  public view returns(uint){

       return arrx.length;
   }


}
  • 本文链接: https://dreamerjonson.com/2018/11/23/solidity-38-storage/

  • 版权声明: 本博客所有文章除特别声明外,均采用 CC BY 4.0 CN协议 许可协议。转载请注明出处!

solidity智能合约[38]-storage引用_第1张图片