本文整理汇总了C++中Dynamic::__ToInt方法的典型用法代码示例。如果您正苦于以下问题:C++ Dynamic::__ToInt方法的具体用法?C++ Dynamic::__ToInt怎么用?C++ Dynamic::__ToInt使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Dynamic
的用法示例。
在下文中一共展示了Dynamic::__ToInt方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1:
double Dynamic::operator%(const Dynamic &inRHS) const
{
if (mPtr->__GetType()==vtInt && inRHS.mPtr->__GetType()==vtInt)
return mPtr->__ToInt() % inRHS->__ToInt();
double lhs = mPtr->__ToDouble();
double rhs = inRHS->__ToDouble();
int even = (int)(lhs/rhs);
double remain = lhs - even * rhs;
if (remain<0) remain += fabs(rhs);
return remain;
}
示例2: zero
// Set numeric values to 0, pointers to null, bools to false
void ArrayBase::zero(Dynamic inFirst, Dynamic inCount)
{
int first = inFirst==null() ? 0 : inFirst->__ToInt();
if (first<0)
first+=length;
if (first<0 || first>=length)
return;
int count = length;
if (inCount!=null())
count = inCount->__ToInt();
if (count<0)
count += length;
if (count<0)
return;
if (first+count > length)
count = length - first;
int size = GetElementSize();
memset(mBase + first*size, 0, count*size);
}
示例3: mValue
CppInt32__::CppInt32__(const Dynamic &inD) : mValue(inD->__ToInt()) { }