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 + -
显示快捷键?