本文整理汇总了C++中CBox::Volume方法的典型用法代码示例。如果您正苦于以下问题:C++ CBox::Volume方法的具体用法?C++ CBox::Volume怎么用?C++ CBox::Volume使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CBox
的用法示例。
在下文中一共展示了CBox::Volume方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1:
// Operator function for 'greater than' that
// compares volumes of CBox objects.
bool CBox::operator>(const CBox& aBox) const
{
return this->Volume() > aBox.Volume();
}
示例2:
bool operator == (const CBox& aBox) const
{
return this->Volume() == aBox.Volume();
}
示例3: Compare
// Function to compare two boxes which returns true (1)
// if the first is greater than the second, and false (0) otherwise
int Compare(const CBox& xBox) const {
return this->Volume() > xBox.Volume();
}
示例4:
// Function for testing if a constant is < CBox object
bool operator<(const double& value, const CBox& aBox)
{ return value < aBox.Volume(); }
示例5: Compare
// Function to compare two boxes which returns true
// if the first is greater than the second, and false otherwise
bool Compare(CBox& xBox) {
return this->Volume() > xBox.Volume();
}