我有以下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 变量。
如您所见,变量已经在开头声明了。谢谢!