多文件程序的编写
摘要:
多文件程序包含:
头文件.h
源文件.cpp
主函数.cpp //声明抽象基类Shape
//Shape.h
class Shape
{
public: virtual float area() const { return 0.0; } //虚函数 virtual float volume() const { return 0.0; } //虚函数 virtual void shapeName() const=0; //纯虚函数
};//声明类Point
//Point.h
class Point:public Shape //Point是Shape的公用派... 阅读全文
posted @ 2011-11-23 17:21 1.曲待续 阅读(363) 评论(0) 推荐(0) 编辑