gpt4 book ai didi

matrix - 如何在 Promela 中创建二维数组?

转载 作者:行者123 更新时间:2023-12-04 15:38:53 24 4
gpt4 key购买 nike

要在 C 中创建矩阵,我们需要编写:

int[][] a = {{1,2,3},{1,2,3},{1,2,3}}

如何在 Promela 中创建矩阵?

最佳答案

来自docs :

Multidimensional arrays can be constructed indirectly with the use of typedef definitions.

同样来自 docs :

EXAMPLES

The first example shows how to declare a two-dimensional array of elements of type byte with a typedef.

typedef array { /* typedefs must be global */
byte aa[4]
};
init {
array a[8]; /* 8x4 = 32 bytes total */
a[3].aa[1] = 5
}

更好的方法是使用 one-dimensional arrays .

关于matrix - 如何在 Promela 中创建二维数组?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58748279/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com