我爱Aspx >> VC.Net >> 接触VC,2:2}
void Aves::run()
{
cout<<"I can run by "<<m_strCrura<<endl;
}
void Aves::fly()
{
cout<<"I can fly by "<<m_strWing<<endl;
}
class Ostrich : public Aves
{
public:
void tweet();
void fly();
};
void Ostrich::tweet()
{
cout<<"gugugugugugugu"<<endl;
}
void Ostrich::fly()
{
cout<<"I can´t fly by "<<m_strWing<<endl;
}
面向对象与现代软件组件系统(V0..[05-21]
文档—视窗结构批判[05-21]
显示JPG和GIF图片的简单方法[05-21]
列举进程[05-21]
如何在工具栏上添加平面下拉控件[05-21]
接触VC,2:1[05-21]
自己动手做QQ木马----邮件发送篇[05-21]
接触VC(二)[05-21]
WTL流程分析-初稿[05-21]
通过串口收发短消息(下)[05-21]