📄 ex11_1.cpp
字号:
// ex11_1.cpp
// publication class and derived classes
#include <iostream>
#include <string>
using namespace std;
////////////////////////////////////////////////////////////////
class publication
{
private:
string title;
float price;
public:
virtual void getdata()
{
cout << "\nEnter title: "; cin >> title;
cout << "Enter price: "; cin >> price;
}
virtual void putdata()
{
cout << "\n\nTitle: " << title;
cout << "\nPrice: " << price;
}
};
////////////////////////////////////////////////////////////////
class book : public publication
{
private:
int pages;
public:
void getdata()
{
publication::getdata();
cout << "Enter number of pages: "; cin >> pages;
}
void putdata()
{
publication::putdata();
cout << "\nPages: " << pages;
}
};
////////////////////////////////////////////////////////////////
class tape : public publication
{
private:
float time;
public:
void getdata()
{
publication::getdata();
cout << "Enter playing time: "; cin >> time;
}
void putdata()
{
publication::putdata();
cout << "\nPlaying time: " << time;
}
};
////////////////////////////////////////////////////////////////
int main()
{
publication* pubarr[100]; //array of ptrs to pubs
int n = 0; //number of pubs in array
char choice; //user's choice
do {
cout << "\nEnter data for book or tape (b/t)? ";
cin >> choice;
if( choice=='b' ) //make book object
pubarr[n] = new book; // put in array
else //make tape object
pubarr[n] = new tape; // put in array
pubarr[n++]->getdata(); //get data for object
cout << " Enter another (y/n)? "; //another pub?
cin >> choice;
}
while( choice =='y'); //cycle until not 'y'
for(int j=0; j<n; j++) //cycle thru all pubs
pubarr[j]->putdata(); //print data for pub
cout << endl;
return 0;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -