/*
*Copyright (c) 2015,烟台大学计算机学院
*All rights reserved.
*文件名称:.cpp
*作者:孙旭明
*完成时间:2015年3月23号
*版本号:v1.0
*/
#include <iostream>
using namespace std;
class Test
{
private:
int x,y;
public:
void setX(int a)
{
x=a;
}
void setY(int b)
{
y=b;
}
void getXY(int *px,int *py)
{
*px=x;
*py=y;//提取x,y
}
};
int main()
{
Test p1;
p1.setX(3);
p1.setY(5);
int a,b;
p1.getXY(&a,&b);//将a=x,b=y
cout<<"x="<<a<<endl;
cout<<"y="<<b<<endl;
return 0;
}
心得:
通过指针,取地址,为有效数据,加密