- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的程序无法运行并给我错误消息。起初,我忘了在头文件中的 后面放一个分号。我返回并添加了一个,但 Visual Studio 一直给我错误。
#ifndef RECTANGLE_H
#define RECTANGLE_H
using namespace std;
// Class declaration
class Rectangle
{
private:
double length;
double width;
public:
Rectangle();
Rectangle(double, double);
Rectangle operator-(Rectangle &);
Rectangle operator*(Rectangle &);
friend istream& operator>>(istream &, Rectangle &);
};
#endif
#include "stdafx.h"
#include <iostream>
#include "Rectangle.h"
using namespace std;
// Default Constructor
Rectangle::Rectangle()
{
length = 0;
width = 0;
}
// Constructor
Rectangle::Rectangle(double len, double wid)
{
length = len;
width = wid;
}
// Overload the - operator
Rectangle Rectangle::operator-(Rectangle &otherRect)
{
Rectangle temp;
temp.length = this->length - otherRect.length;
temp.width = this->width - otherRect.width;
return temp;
}
// Overload the * operator
Rectangle Rectangle::operator*(Rectangle &otherRect)
{
Rectangle temp;
temp.length = this->length * otherRect.length;
temp.width = this->width * otherRect.width;
return temp;
}
// Overload the cin operator
istream& operator>>(istream &is, Rectangle& r)
{
// Prompt user for length
cout << "Enter the length: ";
is >> r.length;
// Prompt user for width
cout << "Enter the width: ";
is >> r.width;
return is;
}
#include "stdafx.h"
#include "Rectangle.h"
#include <iostream>
using namespace std;
int main()
{
Rectangle r1(3,5);
Rectangle r3, r4, r5, r6;
Rectangle r2(r1); // Copy constructor
cin >> r2; // Read in value for r2 and to be overloaded
r3 = r1 – r2;
cout << r3;
r4 = r1 * r2;
cout << r4;
system("PAUSE");
return 0;
This is student 9*********. Please ignore this message as this is for any of my instructors who come across this post. I have been advised to do this to avoid any type of plagiarism issues.
最佳答案
你有两个问题。首先是您没有声明或定义插入运算符。你在这里使用它:
cout << r3;
和
cout << r4;
你的第二个问题似乎是你试图减去两个矩形的那条线有一个不是减号的字符:
r3 = r1 – r2
// ^This isn't a subtraction, it's a hyphen or something.
r3 = r1 - r2
// ^See the difference?
添加插入运算符重载并修复减号后,您的代码已编译。
关于c++ - 在 Rectangle 类中重载运算符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30180624/
有谁知道这种情况发生或应该发生的情况,粗略地浏览一下文档是没有帮助的。 最佳答案 只有在矩形不相交的情况下才会发生这种情况。例如 new Rectangle(0, 0, 10, 10).interse
我看到 System.Drawing.Rectangle 类有两组属性: X、Y、宽度、高度 左、上、右、下 Width 和Right 之间的区别很明显。但我不明白 Left 和 Top 属性背后的原
给定一个元组列表(包括 x, y, width, height 这四个值以二维坐标定义一个矩形)。目标是在原始列表中检查一个矩形是否在另一个矩形内部(如果是,则只取较小的,较大的丢弃) 最佳答案 如果
我去的论坛上有人说我不应该使用 Rectangle.intersects 进行碰撞检测,而应该使用这个算法: boolean rectangleIntersects(float rect1x, flo
Rectangle 类扩展了 ClosedShape 类。当我尝试创建 Rectangle 的实例时,出现编译器错误: constructor Rectangle in class Rectangle
以下是intersects(Rectangle r) awt Rectangle 的方法 源代码。 我添加一些以 //* 开头的评论与我的问题相关: 由于代码验证 rw (例如)为正,则 rw rw+
我正在使用 Dr. Java,语言是 java ...我是初学者* 只是一个基本的矩形 问题: 创建一个构造 Rectangle 对象 (java.awt.Rectangle) 的程序。该对象应具有
有没有办法知道 libgdx 中两个 Rectangle 之间的交集 Rectangle 面积,就像 C# 中的 Rectangle http://msdn.microsoft.com/en-us/l
所以我正在做一个Java作业,我必须创建一个矩形类,该类在一个绘制重叠矩形的程序中使用,并且在矩形重叠的地方,用新的颜色绘制一个新的矩形。我添加了硬件描述的链接,因为我认为让您查看它比我试图解释它更容
我有一个网格,用户可以在上面绘制矩形(实际上是房子里的房间)。由于房间不能相互交叉,因此我尝试在绘制第二个房间之前检查是否存在冲突。到目前为止,我设法检查第二个矩形的“目标点”是否在第一个矩形内部(=
我不明白为什么这个程序不起作用。我是 C++ 的新手,在学习了三年 Java 后转行。我认为 Java 中的错误消息毫无意义,但我在 C++ 中得到的错误只是直截了当的胡言乱语。这是我真正能理解的。
在 OnPaint 方法中绘图时,我一直偏离 1 个像素。我不明白为什么。 不过,我不确定是不是我算不上! 我已经回到绘图板,在 1 个面板中使用 1 个标签,因为我确定我正确地计算了这些,我有大量的
找到适合空白空间的面积最大的矩形的最有效算法是什么? 假设屏幕看起来像这样('#' 代表填充区域): .................... ..............###### ##.....
我正在查看一个包含两个矩形的控件:一个在另一个矩形内。我希望用户能够拖动内部矩形,调整它的大小,并在可能的情况下在外部矩形的范围内旋转它。这些值应该是可绑定(bind)的,以便我可以在更新时将这些值存
两者有什么区别?使用其中任何一种时,我都没有发现我的项目有任何差异,但我不知道这两种方法有什么用,这让我很困扰。 请指教! 最佳答案 布局矩形是控件的外观视觉尺寸。它与实际框架不同,因为在控件的视觉不
你可以有一个父类(super class) Shape,Square 和 Rectangle 是两个子类,但是你可以有 Square 子类 Rectangle,因为 Square 是一个四边相等的特殊
我正在阅读以下代码,并开始想知道 Rectangle.prototype = Object.create(Shape.prototype) 和 Rectangle.prototype = Shape.
我看到了两种不同的模式和解释。来自 DailyJS 和许多其他人的一篇:矩形.prototype = new Shape(); 然后是 Crockford 的 here 这意味着只是 矩形.proto
Sorry, the original image cannot be uploaded due to some security reasons. The following is a sch
以下代码是教程的一部分。我已经无数次根据教程检查代码,虽然它在视频上有效,但我的程序有以下错误: 1>------ Build started: Project: simpleclass, Confi
我是一名优秀的程序员,十分优秀!