1. 程式人生 > >solidity智慧合約[16]-固定長度陣列

solidity智慧合約[16]-固定長度陣列

陣列

記憶體中的一片連續區域

定義

1
2
int[7] math;
bytes2[3] bytesTest;

賦值

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

修改內容

1
2
3
function init2() public {
  bytesTest[1] = 0x6a6f;
}

返回陣列

1
2
3
4
function getArray2() public view returns(bytes2[3]){


return bytesTest;
}

獲取陣列長度

1
2
3
4
function getlength() public view returns(uint){
    return grade.length;

}

陣列遍歷求和

1
2
3
4
5
6
7
function add() public view returns(uint){
   uint sum= 0 ;
   for(uint i = 0;i<5;i++){
       sum+=grade[i];

   }
   return sum;
}

錯誤程式碼

固定陣列不能修改大小和內容

1
2
3
4
5
6
7
8
9
10
11


//   function getlength2() public{
//     grade.length  =90;

// }

// function pushelement() public {

//     grade.push(90);
// }

完整例子

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20

21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
pragma solidity ^0.4.23;

contract arrayTest{


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

   int[7] math;
   bytes2[3] bytesTest;

    function init2() public {
       bytesTest[1] = 0x6a6f;
   }

       function getArray2() public view returns(bytes2[3]){

       return bytesTest;
   }
   function init() public {
       grade[0] = 100;
       grade[1] = 200;
   }

   function getArray() public view returns(uint[5]){

       return grade;
   }

   function add() public view returns(uint){
       uint sum= 0 ;
       for(uint i = 0;i<5;i++){
           sum+=grade[i];
       }
       return sum;
   }

   function getlength() public view returns(uint){
       return grade.length;

   }

   //   function getlength2() public{
   //     grade.length  =90;

   // }

   // function pushelement() public {

   //     grade.push(90);
   // }

}

image.png