CAPL通过在函数内改变全局变量的值
CAPL通过&在函数内改变全局变量的值
先定义一个全局变量。
variables
{
int tiancihaoche;
}
再定义一个函数如下:
void change_1(int test)
{
test=555;
}
测试下:
on key '2'
{
先定义一个全局变量。
variables
{
int tiancihaoche;
}
再定义一个函数如下:
void change_1(int test)
{
test=555;
}
测试下:
on key '2'
{