最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
例程实作 ----庖丁解羊(下)(转)
时间:2022-07-02 18:06:13 编辑:袖梨 来源:一聚教程网
例程实作
----庖丁解羊(下)
#include
#include
using namespace std;
class Part{
public:
virtual void Draw()=0;
virtual ~Part(){}
};
class Shape{
public:
Shape( string const& _s ):data( _s ){}
void Draw( unsigned color )
{
cout << data << " with color :" << hex << color << endl;
} //提供了借口,但是没有实现绘图
private:
string data;
//读者可以自己实现绘图部分
};
//绒毛,骨架,胸,腹,背,眼睛,鼻子,嘴巴,心,脾,肝,肠,肾,脚,尾巴,耳朵,肺,胃{{部分,显示=轮廓+颜色},轮廓[1],颜色[1]}
class BasePart : public Part{
public:
BasePart( string const& _s , unsigned _c ):shape( _s ),color( _c ){}
void Draw()
{
shape.Draw( color );
}
private:
Shape shape;
----庖丁解羊(下)
#include
#include
using namespace std;
class Part{
public:
virtual void Draw()=0;
virtual ~Part(){}
};
class Shape{
public:
Shape( string const& _s ):data( _s ){}
void Draw( unsigned color )
{
cout << data << " with color :" << hex << color << endl;
} //提供了借口,但是没有实现绘图
private:
string data;
//读者可以自己实现绘图部分
};
//绒毛,骨架,胸,腹,背,眼睛,鼻子,嘴巴,心,脾,肝,肠,肾,脚,尾巴,耳朵,肺,胃{{部分,显示=轮廓+颜色},轮廓[1],颜色[1]}
class BasePart : public Part{
public:
BasePart( string const& _s , unsigned _c ):shape( _s ),color( _c ){}
void Draw()
{
shape.Draw( color );
}
private:
Shape shape;
相关文章
- ps精修品牌面膜图片教程 07-06
- 几何王国兑换码最新2025-几何王国兑换码在哪里兑换 07-06
- jsp网页实现贪吃蛇小游戏 07-06
- 比特币巨鲸转移10亿美元BTC,沉睡投资者苏醒后获得3,176,464%的投资回报 07-06
- 球球大作战名字颜色代码大全最新-球球大作战名字颜色代码怎么弄 07-06
- 大江湖之苍龙与白鸟黑泥沼怎么走-大江湖之苍龙与白鸟黑泥沼路线 07-06