问题描述:
Machine Expert 程序编译时,编译器错误代码C0049处理方法所属产品线:
EcoStruxure Machine Expert(原SoMachine)解决方法:
Machine Expert 程序编译时,编译器错误C0049的消息,错误原因,解决方法,错误示例如下:
弹出消息
The constant index ‘<index value>’ is not within the range from ‘<start index>’ to ‘<end index>’
错误原因
指定的索引超出数组的大小范围。
解决方法
仅使用在数组的大小范围内的索引。
错误示例
PROGRAM PLC_PRG
VAR
arr1 : ARRAY[1..2] OF INT;
END_VAR
arr1[3] := 1;
--> C0049: The constant index '3' is not within the range from '1' to '2'
错误纠正
arr1[2] := 1;
是否有帮助?