21天学通c++之第二周 指针 8.10 使用指向const对象的指针

霸气de小男生 提交于 2020-03-30 16:47:15

#include <iostream>
using namespace std;
class Rectangle
{
public:
 Rectangle();
 ~Rectangle();
 void setlength(int length){itslength=length;}
 int getlength()const{return itslength;}
 void setwidth(int width){itswidth=width;}
 int getwidth()const{return itswidth;}
private:
 int itslength;
 int itswidth;
};
Rectangle::Rectangle()
{
 itswidth=5;
 itslength=10;
}
Rectangle::~Rectangle()
{

}
int main()
{
 Rectangle* prect=new Rectangle;
 const Rectangle * pconstrect=new Rectangle;
 Rectangle * const
}

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!