#include <bits/stdc++.h>using namespace std;class Person {public: virtual void eat() = 0; virtual void pay() = 0;};class Chinese : public Person {public: Chinese() { cout << "中国人进入餐厅" << endl; } ~Chinese() { cout << "中国人离开餐厅" << endl; } void eat() { ...