C++資料抽象


下面來看看一個C++中的抽象類的例子,它有一個抽象方法draw()。 在C++程式中,如果實現類的私有和公共成員,那麼它是一個資料抽象的例子。

下面來看看看資料抽象的簡單例子。

#include <iostream>  
using namespace std;  
class Sum  
{  
    private: int x, y, z;  
    public:  
        void add()  
        {  
            cout<<"Enter two numbers: ";  
            cin>>x>>y;  
            z= x+y;  
            cout<<"Sum of two number is: "<<z<<endl;  
        }  
};  
int main()  
{  
    Sum sm;  
    sm.add();  
    return 0;  
}

執行上面程式碼得到以下結果 -

Enter two numbers:
3
6
Sum of two number is: 9