对象指针:
Posted 稻草人部落
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了对象指针:相关的知识,希望对你有一定的参考价值。
Line *Line_ptr; //声明Line类的对象指针变量Line_ptr;
Line l1; //声明Line类实例对象L1
Line_ptr=&L1; //取L1的地址赋值给Line_ptr;
int getlength()
{
return length;
}
cout<<Line_ptr->getlength()<<endl;
cout<<L1.getlength()<<endl; //两者等价
以上是关于对象指针:的主要内容,如果未能解决你的问题,请参考以下文章