快速提问:
考虑这种(错误的)从双精度型到长整数的转换:
Eigen::VectorXd Price = Map<VectorXd>(price, n);
double TickFactor = 1.0 / TickSize;
Eigen::VectorXi IntPrice = (Price * TickFactor).cast <long int> ();
会出现以下错误(Eigen 3.3.5,g ++ 7.3.0):
eigen/Eigen/src/Core/util/StaticAssert.h:33:40: error: static assertion failed: YOU_MIXED_DIFFERENT_NUMERIC_TYPES__YOU_NEED_TO_USE_THE_CAST_METHOD_OF_MATRIXBASE_TO_CAST_NUMERIC_TYPES_EXPLICITLY
#define EIGEN_STATIC_ASSERT(X,MSG) static_assert(X,#MSG);
现在,它将编译:
Eigen::VectorXi IntPrice = (Price * TickFactor).cast <int> ();
这是我的问题。上面的行是否允许(Price * TickFactor)
的值大于short int
的上限? -当前系统上的任何内容,例如33K。
答案 0 :(得分:2)
此行
Eigen::VectorXi IntPrice = (Price * TickFactor).cast <int> ();
本质上等同于
Eigen::VectorXi IntPrice(Price.size());
for(Eigen::Index i=0; i<Price.size(); ++i)
IntPrice[i] = static_cast<int>(Price[i] * TickFactor;
除非在您的系统上short int
和int
相同,否则您只能使用int
的大小(而不是short int
),并且溢出行为为(我认为)未定义。
如果要使用64位整数,请按照ggael的建议进行操作:
typedef Eigen::Matrix<int64_t,Dynamic,1> VectorXi64;
VectorXi64 IntPrice = (Price * TickFactor).cast<int64_t>();