0

我有以下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 变量。

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

4

1 回答 1

0

该类型RentalInfo不作为类存在。

这就是错误出现在第 4 行第 4 列的原因。

于 2016-12-21T11:09:49.250 回答