[SV]Systemverilog动态数组(Dynamic Array)

本文介绍了SystemVerilog中的动态数组,包括动态数组的声明、方法及实例。动态数组允许在运行时设置或更改大小,使用new[]进行空间分配,size()返回当前大小,delete()清空数组。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

Systemverilog动态数组

       A dynamic array is one dimension of an unpacked array whose size can be set or changed at run-time. Dynamic array is Declared using an empty word subscript [ ].

       The space for a dynamic array doesn’t exist until the array is explicitly created at run-time, space is allocated when new[number] is called. the number indicates the number of space/elements to be allocated.

一、Dynamic array Syntax

//data_type is the data type of the array elements.
data_type array_name [ ];

二、Dynamic array methods

  • new[ ]    –> allocates the storage.
  • size( )    –> returns the current size of a dynamic array.
  • delete( ) –> empties the array, resulting in a zero-sized array.

 2.1 Example:

//declaration
bit [7:0] d_array1[ ];
int d_array2[ ];
 
//memory allocation
d_array1 = new[4]; //dynamic array of 4 elements
d_array2 = new[6]; //dynamic array of 6 elements
 
//array initialization
d_array1 = {0,1,2,3};
foreach(d_array2[j]) d_array2[j] = j;

 

 2.2 resize the dynamic array

//Change t
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

元直数字电路验证

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值