// 给你个建议, 不要用 void main() 这种写法
int main()
{
test * ptrX = new test[3];
test * pTemp = ptrX; // we just work with this temporary pointer
for (int i=0;i<3;i++)
{
pTemp->setX(3*i+2);
pTemp++;
}
for(i=3;i>0;i--)
{
cout<<"ptrX="<<pTemp->getX()<<endl;
pTemp--;
}
for(i=0;i<3;i++)
{
cout<<"ptrX="<<pTemp->getX()<<endl;
pTemp++;
}
delet []ptrX; // so that this pointer to the object will never be changed
return 0;
}
int main()
{
test * ptrX = new test[3];
test * pTemp = ptrX; // we just work with this temporary pointer
for (int i=0;i<3;i++)
{
pTemp->setX(3*i+2);
pTemp++;
}
for(i=3;i>0;i--)
{
cout<<"ptrX="<<pTemp->getX()<<endl;
pTemp--;
}
for(i=0;i<3;i++)
{
cout<<"ptrX="<<pTemp->getX()<<endl;
pTemp++;
}
delet []ptrX; // so that this pointer to the object will never be changed
return 0;
}
自由,民主,平等,博爱,进步.
中华民国,我的祖国,中华民国万岁!中华民国加油!
本人自愿加入中国国民党,为人的自由性,独立性和平等性而奋斗!