当前位置: 首页>>代码示例>>C++>>正文


C++ Rectangle::Area方法代码示例

本文整理汇总了C++中Rectangle::Area方法的典型用法代码示例。如果您正苦于以下问题:C++ Rectangle::Area方法的具体用法?C++ Rectangle::Area怎么用?C++ Rectangle::Area使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Rectangle的用法示例。


在下文中一共展示了Rectangle::Area方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。

示例1: PrintObject

void PrintGeometricObject::PrintObject(Rectangle& r)
{
	// Todo
	cout << "Rectangle\n";
	cout << "  length:        " << r.length_ << " " << r.measurementUnit_ << "\n";
	cout << "  height:        " << r.height_ << " " << r.measurementUnit_ << "\n";
	cout << "  circumference: " << r.Circumference() << " " << r.measurementUnit_ << "\n";
	cout << "  area:          " << r.Area() << " " << r.measurementUnit_ << "^2\n";
	cout << "  the rectangle " << (r.IsSquare() ? "is " : "is not ") << "a square.\n\n";
}
开发者ID:kext,项目名称:Informatik-II,代码行数:10,代码来源:PrintGeometricObject.cpp

示例2: InclusiveArea

 int InclusiveArea (Rectangle &r){
     // I include it
     if (r.topLeft.x >= topLeft.x && r.bottomRight.x <= bottomRight.x &&
             r.topLeft.y <= topLeft.y && r.bottomRight.y >= bottomRight.y ) {
         return this->Area();
     }
     // it includes me
     if (r.topLeft.x <= topLeft.x && r.bottomRight.x >= bottomRight.x &&
             r.topLeft.y >= topLeft.y && r.bottomRight.y <= bottomRight.y ) {
         return r.Area();
     }
     // 0 - no inclusive
     return 0;
 }
开发者ID:0-1heyi,项目名称:leetcode,代码行数:14,代码来源:RectangleArea.cpp

示例3: Area

bool Rectangle::operator!=(const Rectangle& other) const
{
   return Area()!=other.Area();
}
开发者ID:nrichgels,项目名称:ClassCode,代码行数:4,代码来源:rectangle.cpp

示例4: process

void process(Rectangle &r) {
    int w = r.getWidth();
    r.setHeight(10);

    cout << "Expect area = " << (w*10) << ", got " << r.Area() << endl;
}
开发者ID:bjaskj,项目名称:pluralcppc,代码行数:6,代码来源:main.cpp


注:本文中的Rectangle::Area方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。