我有以下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变量。
如您所见,该变量已在开头声明。 谢谢!
答案 0 :(得分:0)
类型RentalInfo
不作为类存在。
这就是为什么错误在第4行第4列。