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