unit2.h
来自「多线程实例」· C头文件 代码 · 共 22 行
H
22 行
//---------------------------------------------------------------------------
#ifndef Unit2H
#define Unit2H
//---------------------------------------------------------------------------
#include <Classes.hpp>
//---------------------------------------------------------------------------
class Bubble : public TThread
{
private:
int X,Y1,Y2;
TColor color;
protected:
void __fastcall Execute();
void __fastcall Paint();
public:
__fastcall Bubble(bool CreateSuspended);
__fastcall Bubble(TColor color,int XPos,int YPos,bool CreateSuspended=true);
};
//---------------------------------------------------------------------------
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?