编译器抛出错误作为变量未声明为X ++

时间:2016-12-21 09:22:27

标签: axapta x++ morph-x

我有以下x++代码:

static void Datatypes_class_variable(Args _args)
{
    // Declare a class variable from the RentalInfo class
    RentalInfo   rentalInfo;
    ;
    // An object is created and referenced by the
    // class variable rentalInfo
    rentalInfo = new RentalInfo();
    // Call methods to set/get data to/from the object
    rentalInfo.setCar("BMW 320");
    info(strfmt("The car is a %1", rentalInfo.getCar()));
}

我不明白为什么编译器会向我提出错误:

  

未声明RentalInfo变量。

如您所见,该变量已在开头声明。 谢谢!

1 个答案:

答案 0 :(得分:0)

类型RentalInfo不作为类存在。

这就是为什么错误在第4行第4列。