我试图在UPPAAL函数中返回整数数组。 正确的语法是什么?
此代码段无效:
int[] randomTest(int N)
{
int test[2];
test[0] = 0;
test[1] = 1;
return test;
}
答案 0 :(得分:0)
允许为时钟,通道,常量和整数变量使用数组。
通过在变量名称后附加大小
来定义它们 e.g. chan c[4]; clock a[2]; int[3,5] u[7];
。
启动器用于初始化整数变量和整数变量数组。
例如int i := 2; or int i[3] := {1, 2, 3};
。