在我看来,我通过执行以下代码将值传递给控制器
using namespace std;
现在在我的控制器中然后我尝试转换传递值以便稍后操作它,我收到错误FormatException未被usercode处理。 我模型中x_coord的数据类型是double。
#include <iostream>
int main(){
union numbericUnion
{
int intValue;
long longValue;
double doubleValue;
};
numbericUnion myUnion;
myUnion.intValue = 3;
std::cout << myUnion.intValue << std::endl;
myUnion.doubleValue = 4.5;
std::cout << myUnion.doubleValue << std::endl;
std::cout << myUnion.intValue;
std::cout << std::endl;
}