草庐IT

Solidity – 数组

m0_73054711 2024-05-14 原文

数组是存储相同数据类型元素的固定集合的数据结构,其中每个元素都有一个称为索引的特定位置。我们不需要创建大量相同类型的单独变量,而是声明一个所需大小的数组并将元素存储在数组中,并且可以使用索引进行访问。在 Solidity 中,数组可以是固定大小或动态大小。数组有一个连续的内存位置,其中最低的索引对应于第一个元素,而最高的表示最后一个元素

创建一个数组
要在 Solidity 中声明数组,应指定元素的数据类型和元素的数量。数组的大小必须是正整数并且数据类型应该是有效的 Solidity 类型

句法:

<数据类型> <数组名称>[大小] = <初始化>
固定大小的数组
数组的大小应该是预定义的。元素的总数不应超过数组的大小。如果未指定数组的大小,则创建足够大小的数组,足以容纳初始化。

示例:在下面的示例中,创建了合约类型来演示如何声明和初始化固定大小的数组。

// Solidity program to demonstrate
// creating a fixed-size array
pragma solidity ^0.5.0;

// Creating a contract
contract Types {

	// Declaring state variables
	// of type array
	uint[6] data1;	
	
	// Defining function to add
	// values to an array
	function array_example() public returns (
	int[5] memory, uint[6] memory){
			
		int[5] memory data
		= [int(50), -63, 77, -28, 90];
		data1
		= [uint(10), 20, 30, 40, 50, 60];
			
		return (data, data1);
}
}

 

输出 : 

动态数组: 
数组的大小在声明时没有预定义。随着元素的添加,数组的大小会发生变化,并且在运行时,数组的大小将被确定。

示例:在下面的示例中,创建了合约类型来演示如何创建和初始化动态数组。

// Solidity program to demonstrate
// creating a dynamic array
pragma solidity ^0.5.0;

// Creating a contract
contract Types {
	
	// Declaring state variable
	// of type array. One is fixed-size
	// and the other is dynamic array
	uint[] data
	= [10, 20, 30, 40, 50];
	int[] data1;
	
	// Defining function to
	// assign values to dynamic array
	function dynamic_array() public returns(
	uint[] memory, int[] memory){
	
		data1
		= [int(-60), 70, -80, 90, -100, -120, 140];
		return (data, data1);
	}
}

 

输出 : 

 

数组操作
1.访问数组元素:使用索引访问数组的元素。如果要访问第 i 个元素,则必须访问第 (i-1) 个索引。

示例:在下面的示例中,合约类型首先初始化一个数组 [数据],然后检索特定索引 2 处的值。

// Solidity program to demonstrate
// accessing elements of an array
pragma solidity ^0.5.0;

// Creating a contract
contract Types {

	// Declaring an array
	uint[6] data;	
	
	// Defining function to
	// assign values to array
	function array_example(
	) public payable returns (uint[6] memory){
			
		data
		= [uint(10), 20, 30, 40, 50, 60];
		return data;
}
	
// Defining function to access
// values from the array
// from a specific index
function array_element(
) public payable returns (uint){
		uint x = data[2];
		return x;
}
}

 

输出 : 

2. 数组长度:数组长度用于检查数组中存在的元素数量。内存数组的大小在声明时是固定的,而动态数组是在运行时定义的,因此需要操作长度。

示例在下面的示例中,合约类型首先初始化一个数组[数据],然后计算数组的长度。

 

// Solidity program to demonstrate
// how to find length of an array
pragma solidity ^0.5.0;

// Creating a contract
contract Types {

	// Declaring an array
	uint[6] data;	
		
	// Defining a function to
	// assign values to an array
	function array_example(
	) public payable returns (uint[6] memory){
		data = [uint(10), 20, 30, 40, 50, 60];
		return data;
}

// Defining a function to
// find the length of the array
function array_length(
) public returns(uint) {
		uint x = data.length;
		return x;
	}
}

输出 : 

3. Push: Push 用于在动态数组中添加新元素时使用。新元素总是添加到数组的最后一个位置。

示例在下面的示例中,合约类型首先初始化一个数组[数据] 然后将更多的值推入数组中。

 

// 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;
	}
}

输出 : 
 

4. Pop:当要在任何动态数组中删除数组的最后一个元素时使用 Pop。

示例在下面的示例中,合约类型首先初始化一个数组[数据] 然后使用pop 函数从数组中删除值。

 

// Solidity program to demonstrate
// Pop operation
pragma solidity ^0.5.0;
	
// Creating a contract
contract Types {

	// Defining an array
	uint[] data
	= [10, 20, 30, 40, 50];
	
	// Defining a function to
	// pop values from the array
	function array_pop(
	) public returns(uint[] memory){
		data.pop();
		return data;
	}
}

输出 : 

 

有关Solidity – 数组的更多相关文章

  1. ruby-on-rails - 在 Ruby 中循环遍历多个数组 - 2

    我有多个ActiveRecord子类Item的实例数组,我需要根据最早的事件循环打印。在这种情况下,我需要打印付款和维护日期,如下所示:ItemAmaintenancerequiredin5daysItemBpaymentrequiredin6daysItemApaymentrequiredin7daysItemBmaintenancerequiredin8days我目前有两个查询,用于查找maintenance和payment项目(非排他性查询),并输出如下内容:paymentrequiredin...maintenancerequiredin...有什么方法可以改善上述(丑陋的)代

  2. ruby - 多次弹出/移动 ruby​​ 数组 - 2

    我的代码目前看起来像这样numbers=[1,2,3,4,5]defpop_threepop=[]3.times{pop有没有办法在一行中完成pop_three方法中的内容?我基本上想做类似numbers.slice(0,3)的事情,但要删除切片中的数组项。嗯...嗯,我想我刚刚意识到我可以试试slice! 最佳答案 是numbers.pop(3)或者numbers.shift(3)如果你想要另一边。 关于ruby-多次弹出/移动ruby​​数组,我们在StackOverflow上找到一

  3. ruby - 将数组的内容转换为 int - 2

    我需要读入一个包含数字列表的文件。此代码读取文件并将其放入二维数组中。现在我需要获取数组中所有数字的平均值,但我需要将数组的内容更改为int。有什么想法可以将to_i方法放在哪里吗?ClassTerraindefinitializefile_name@input=IO.readlines(file_name)#readinfile@size=@input[0].to_i@land=[@size]x=1whilex 最佳答案 只需将数组映射为整数:@land边注如果你想得到一条线的平均值,你可以这样做:values=@input[x]

  4. ruby - 通过 erb 模板输出 ruby​​ 数组 - 2

    我正在使用puppet为ruby​​程序提供一组常量。我需要提供一组主机名,我的程序将对其进行迭代。在我之前使用的bash脚本中,我只是将它作为一个puppet变量hosts=>"host1,host2"我将其提供给bash脚本作为HOSTS=显然这对ruby​​不太适用——我需要它的格式hosts=["host1","host2"]自从phosts和putsmy_array.inspect提供输出["host1","host2"]我希望使用其中之一。不幸的是,我终其一生都无法弄清楚如何让它发挥作用。我尝试了以下各项:我发现某处他们指出我需要在函数调用前放置“function_”……这

  5. ruby - 检查数组是否在增加 - 2

    这个问题在这里已经有了答案:Checktoseeifanarrayisalreadysorted?(8个答案)关闭9年前。我只是想知道是否有办法检查数组是否在增加?这是我的解决方案,但我正在寻找更漂亮的方法:n=-1@arr.flatten.each{|e|returnfalseife

  6. ruby - 如果指定键的值在数组中相同,如何合并哈希 - 2

    我有一个这样的哈希数组:[{:foo=>2,:date=>Sat,01Sep2014},{:foo2=>2,:date=>Sat,02Sep2014},{:foo3=>3,:date=>Sat,01Sep2014},{:foo4=>4,:date=>Sat,03Sep2014},{:foo5=>5,:date=>Sat,02Sep2014}]如果:date相同,我想合并哈希值。我对上面数组的期望是:[{:foo=>2,:foo3=>3,:date=>Sat,01Sep2014},{:foo2=>2,:foo5=>5:date=>Sat,02Sep2014},{:foo4=>4,:dat

  7. ruby - 在 Ruby 中用键盘诅咒数组浏览 - 2

    我正在尝试在Ruby中制作一个cli应用程序,它接受一个给定的数组,然后将其显示为一个列表,我可以使用箭头键浏览它。我觉得我已经在Ruby中看到一个库已经这样做了,但我记不起它的名字了。我正在尝试对soundcloud2000中的代码进行逆向工程做类似的事情,但他的代码与SoundcloudAPI的使用紧密耦合。我知道cursesgem,我正在考虑更抽象的东西。广告有没有人见过可以做到这一点的库或一些概念证明的Ruby代码可以做到这一点? 最佳答案 我不知道这是否是您正在寻找的,但也许您可以使用我的想法。由于我没有关于您要完成的工作

  8. ruby - 如何在 Grape 中定义哈希数组? - 2

    我使用Ember作为我的前端和GrapeAPI来为我的API提供服务。前端发送类似:{"service"=>{"name"=>"Name","duration"=>"30","user"=>nil,"organization"=>"org","category"=>nil,"description"=>"description","disabled"=>true,"color"=>nil,"availabilities"=>[{"day"=>"Saturday","enabled"=>false,"timeSlots"=>[{"startAt"=>"09:00AM","endAt"=>

  9. ruby - 使用多个数组创建计数 - 2

    我正在尝试按0-9和a-z的顺序创建数字和字母列表。我有一组值value_array=['0','1','2','3','4','5','6','7','8','9','a','b','光盘','e','f','g','h','i','j','k','l','m','n','o','p','q','r','s','','u','v','w','x','y','z']和一个组合列表的数组,按顺序,这些数字可以产生x个字符,比方说三个list_array=[]和一个当前字母和数字组合的数组(在将它插入列表数组之前我会把它变成一个字符串,]current_combo['0','0','0']

  10. ruby - 在哈希的键数组中追加元素 - 2

    查看我的Ruby代码:h=Hash.new([])h[0]=:word1h[1]=h[1]输出是:Hash={0=>:word1,1=>[:word2,:word3],2=>[:word2,:word3]}我希望有Hash={0=>:word1,1=>[:word2],2=>[:word3]}为什么要附加第二个哈希元素(数组)?如何将新数组元素附加到第三个哈希元素? 最佳答案 如果您提供单个值作为Hash.new的参数(例如Hash.new([]),完全相同的对象将用作每个缺失键的默认值。这就是您所拥有的,那是你不想要的。您可以改用

随机推荐