⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 myclass.h

📁 这是一些c++例程
💻 H
字号:
// MyClass.h: interface for the MyClass class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_MYCLASS_H__BE79C7D2_0AC3_44DB_B85B_C59F1178F8E7__INCLUDED_)
#define AFX_MYCLASS_H__BE79C7D2_0AC3_44DB_B85B_C59F1178F8E7__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

class Myclass  
{
public:
	Myclass(int a, int b, int c);
	~Myclass();
	void GetNumber();
	void GetSum();
private:
	int A, B, C;
	static int Sum;

};

#endif // !defined(AFX_MYCLASS_H__BE79C7D2_0AC3_44DB_B85B_C59F1178F8E7__INCLUDED_)

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -