由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - 编译错误问题
相关主题
A try-catch problem in C++两个继承问题
a simple question for C++ class为什么我看不懂下面的code,是不是水平还不够?
which func will be called?C++ 弱问一个
请问一个exception题目C++疑问
reverse words, not the Microsoft one!!!c++ 是否也有class method??
about new operatortwo c++ interview questions! (转载)
关于C++中一个Class的大小 (转载)请教一个作用域的问题
C++里面c++ 得最基本问题
相关话题的讨论汇总
话题: phones话题: phone话题: endl话题: cout
进入Programming版参与讨论
1 (共1页)
m*******o
发帖数: 264
1
#include
#include
#include
using namespace std;
class Phones{
public:
Phones(){cout << "Phone object created!" << endl;} //Create and and
initialize phone object
virtual void isDialing() { cout << "base virtual " << endl;}
virtual ~Phones(){ cout << "~Phone" << endl; } //Destroy the Phone
object
protected:
string PhoneNumber;
string ModelType;
};
class LandlinePhone: public Phones{
public:
LandlinePhone(){cout << "LandlinePhone" << endl;}
voi
S*********g
发帖数: 5298
2
The destructor in your derived calss is declared but not defined.

try ~LandLinePhone(){}

【在 m*******o 的大作中提到】
: #include
: #include
: #include
: using namespace std;
: class Phones{
: public:
: Phones(){cout << "Phone object created!" << endl;} //Create and and
: initialize phone object
: virtual void isDialing() { cout << "base virtual " << endl;}
: virtual ~Phones(){ cout << "~Phone" << endl; } //Destroy the Phone

T*****9
发帖数: 2484
3
你构造函数申明了没定义

deleting

【在 m*******o 的大作中提到】
: #include
: #include
: #include
: using namespace std;
: class Phones{
: public:
: Phones(){cout << "Phone object created!" << endl;} //Create and and
: initialize phone object
: virtual void isDialing() { cout << "base virtual " << endl;}
: virtual ~Phones(){ cout << "~Phone" << endl; } //Destroy the Phone

1 (共1页)
进入Programming版参与讨论
相关主题
c++ 得最基本问题reverse words, not the Microsoft one!!!
问个简单的memory allocation 的问题。about new operator
私有成员不能用类成员函数修改?关于C++中一个Class的大小 (转载)
[合集] 关于C++ default copy constructorC++里面
A try-catch problem in C++两个继承问题
a simple question for C++ class为什么我看不懂下面的code,是不是水平还不够?
which func will be called?C++ 弱问一个
请问一个exception题目C++疑问
相关话题的讨论汇总
话题: phones话题: phone话题: endl话题: cout