“Длина массива прочности” Ответ

Как проверить длину массива в солидности

// Solidity program to demonstrate 
// Push operation
pragma solidity ^0.5.0;  
   
// Creating a contract 
contract Types {  
  
    // Defining the array
    uint[] data = [10, 20, 30, 40, 50]; 
    
    // Defining the function to push 
    // values to the array
    function array_push(
    ) public returns(uint[] memory,uint256 length){  
    
        data.push(60);  
        data.push(70);  
        data.push(80);
    
        return (data,length);  
    }  
}
Homeless Herring

Как проверить длину массива в солидности

// Solidity program to demonstrate 
// Push operation
pragma solidity ^0.5.0;  
   
// Creating a contract 
contract Types {  
  
    // Defining the array
    uint[] data = [10, 20, 30, 40, 50]; 
    
    // Defining the function to push 
    // values to the array
    function array_push(
    ) public returns(uint[] memory){  
    
        data.push(60);  
        data.push(70);  
        data.push(80);
    
        return data;  
    }  
}
Homeless Herring

Длина массива прочности

uint8[3] fixedList;
// fixedList.length => 3

uint8[] dynamicList;
uint8.push(1)
uint8.push(2)
// dynamicList.length => 2
John Appleseed

Ответы похожие на “Длина массива прочности”

Вопросы похожие на “Длина массива прочности”

Смотреть популярные ответы по языку

Смотреть другие языки программирования