CRect, Csize, and CPoint classes all have default constructors. It would follow that they should initialize all members to zero, but they don’t! Because of this, the following function has an undefined return value:
int MyFunction(){ CRect rect; rect.BottomRight = CPoint(5, 3); return rect.Width();}
Be sure to always have all members of objects of these classes initialized.
Charlie has over a decade of experience in website administration and technology management. As the site admin, he oversees all technical aspects of running a high-traffic online platform, ensuring optimal performance, security, and user experience.
























