问个关于关于c++中CRect类的问题:
比如CRectrc(300,400,400,450);1.rc+=CRect(10,0,-10,0);2.rc.left-=10;rc.right-=10;经过测试第一种...
比如 CRect rc(300,400,400,450);
1.rc+=CRect(10,0,-10,0);
2.rc.left-=10;
rc.right-=10;
经过测试 第一种方法和第二种方法所得的rc结果是一样的;所以在此请教第一种方法是怎么计算的? 希望能用简单点回答,举点例子最好了。 多谢
可能我表述的不大严谨,我这里的疑问是 当CRect有负数数值时 相互之间怎么进行加减运算。希望看懂题目的简单地回答一下,不要复制MSDN的内容!!! 展开
1.rc+=CRect(10,0,-10,0);
2.rc.left-=10;
rc.right-=10;
经过测试 第一种方法和第二种方法所得的rc结果是一样的;所以在此请教第一种方法是怎么计算的? 希望能用简单点回答,举点例子最好了。 多谢
可能我表述的不大严谨,我这里的疑问是 当CRect有负数数值时 相互之间怎么进行加减运算。希望看懂题目的简单地回答一下,不要复制MSDN的内容!!! 展开
展开全部
MFC不会使用
1.重载了operator+=函数。
rc+=CRect(10,0,-10,0);MFC实现是这样的顺序
构造
ATLTYPES_INLINE CRect::CRect(int l, int t, int r, int b) throw()
{ left = l; top = t; right = r; bottom = b; }
转换
ATLTYPES_INLINE CRect::operator LPRECT() throw()
{ return this; }
ATLTYPES_INLINE void CRect::operator+=(LPCRECT lpRect) throw()
{ InflateRect(lpRect); }
ATLTYPES_INLINE void CRect::InflateRect(LPCRECT lpRect) throw()
{
left -= lpRect->left; top -= lpRect->top;
right += lpRect->right; bottom += lpRect->bottom;
}
看看这个operator+=是怎么计算的
1.重载了operator+=函数。
rc+=CRect(10,0,-10,0);MFC实现是这样的顺序
构造
ATLTYPES_INLINE CRect::CRect(int l, int t, int r, int b) throw()
{ left = l; top = t; right = r; bottom = b; }
转换
ATLTYPES_INLINE CRect::operator LPRECT() throw()
{ return this; }
ATLTYPES_INLINE void CRect::operator+=(LPCRECT lpRect) throw()
{ InflateRect(lpRect); }
ATLTYPES_INLINE void CRect::InflateRect(LPCRECT lpRect) throw()
{
left -= lpRect->left; top -= lpRect->top;
right += lpRect->right; bottom += lpRect->bottom;
}
看看这个operator+=是怎么计算的
追问
兄弟 就是你了 看懂了。 原来如此
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
这个是CRect重载了+=运算符,
rc+=CRect(10,0,-10,0);
//1.创建一个临时CRect变量,值是(10,0,-10,0);
//2 rc=rc的(left/top/right/bottom)的值+临时变量(left/top/right/bottom)的值
rc+=CRect(10,0,-10,0);
//1.创建一个临时CRect变量,值是(10,0,-10,0);
//2 rc=rc的(left/top/right/bottom)的值+临时变量(left/top/right/bottom)的值
追问
你没回答到点子上,你说的这些 我都知道
这里的疑问是 rc最后得到的值 都是 (290,400,390,450)
第二个方法我知道 只是第一个不大理解
如果按平常计算 第一个方法应该得到的是 (310,400,390,450)才对 ,怎么会反而变成290呢?
追答
哦,看的不仔细,看满意答案的意思 CRect的+运算是括大CRect,所以left和Top是-运算,不知道理解的对不对。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
CRect::operator +=
voidoperator+=(POINTpoint);
void operator+=( SIZE size );
void operator+=( LPCRECT lpRect );
Parameters
point
A POINT structure or CPoint object that specifies the number of units to move the rectangle.
size
A SIZE structure or CSize object that specifies the number of units to move the rectangle.
lpRect
Points to a RECT structure or CRect object that contains the number of units to inflate each side of CRect.
Remarks
The first two overloads move CRect by the specified offsets. The parameter’s x and y (or cx and cy) values are added to CRect.
The third overload inflates CRect by the number of units specifed in each member of the parameter.
Example
CRect rect1(100, 235, 200, 335);
CPoint pt(35, 65);
CRect rect2(135, 300, 235, 400);
rect1 += pt;
ASSERT(rect1 == rect2);
voidoperator+=(POINTpoint);
void operator+=( SIZE size );
void operator+=( LPCRECT lpRect );
Parameters
point
A POINT structure or CPoint object that specifies the number of units to move the rectangle.
size
A SIZE structure or CSize object that specifies the number of units to move the rectangle.
lpRect
Points to a RECT structure or CRect object that contains the number of units to inflate each side of CRect.
Remarks
The first two overloads move CRect by the specified offsets. The parameter’s x and y (or cx and cy) values are added to CRect.
The third overload inflates CRect by the number of units specifed in each member of the parameter.
Example
CRect rect1(100, 235, 200, 335);
CPoint pt(35, 65);
CRect rect2(135, 300, 235, 400);
rect1 += pt;
ASSERT(rect1 == rect2);
追问
。。复制MSDN的内容 话说这个我已经看过了 就是没有发现要的答案才提问了 如果你真的知道 请回答 不知道就绕道吧
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2013-03-18
展开全部
关于 Visual C++ 还是去看看 MSDN 比较好
参考资料: http://msdn.microsoft.com/en-US/library/akk34bbk
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询