1. 程式人生 > >(C++)在類外訪問一個類中的私有成員變數

(C++)在類外訪問一個類中的私有成員變數

通過公共函式為私有成員賦值

#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 print(void)    
    {    
        cout<<"x="<<x<<'\t'<<"y="<<y<<endl;    
    }    
} ;   
   
int main()    
{    
    Test p1;    
    p1.setX(1);    
    p1.setY(9);    
    p1.print( );    
    return 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;    //提取x,y值    
       *py=y;    
   }    
};    
int main()    
{    
   Test p1;    
   p1.setX(1);    
   p1.setY(9);    
   int a,b;    
   p1.getXY(&a,&b);  //將 a=x, b=y    
   cout<<a<<'\t'<<b<<endl;    
   return 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;    
    }    
    int getX(void)    
    {    
        return x;   //返回x值    
    }    
    int getY(void)    
    {    
        return y;   //返回y值    
    }    
};    
int main()    
{    
    Test p1;    
    p1.setX(1);    
    p1.setY(9);    
    int a,b;    
    a=p1.getX( );    
    b=p1.getY();    
    cout<<a<<'\t'<<b<<endl;    
    return 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;    //提取x,y值    
        py=y;    
    }    
};    
int main()    
{    
    Test p1,p2;    
    p1.setX(1);    
    p1.setY(9);    
    int a,b;    
    p1.getXY(a, b); //將 a=x, b=y    
    cout<<a<<'\t'<<b<<endl;    
    return 0;    
}