plane.cpp
来自「MFC程序开发参考大全 【明日科技】宋坤 刘锐宁 李伟明 【丛 书 名】」· C++ 代码 · 共 21 行
CPP
21 行
#include "Plane.h"
#include <stdio.h>
Plane::Plane()
{
}
Plane::~Plane()
{
}
void Plane::fly()
{
printf("phane can fly\n");
}
void Plane::output()
{
printf("this is phane\n");
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?