用C 封裝了乙個簡單的「按鈕」類

2021-09-07 23:58:21 字數 709 閱讀 9489

功能簡單,僅僅實現按鈕的按下和鬆開的效果,按鈕具體實現什麼功能就由開發者自己定義了

1 #include

2 #include

3 #include 

4using

namespace std;

5class botton

25void lbotton_down()

//滑鼠左鍵按下

26    

35void lontton_up()

//滑鼠左鍵鬆開

36    

45 };

46int main()

47 {

48     initgraph(

600,

600);

49     setbkcolor(rgb(

230,

230,

230));

50     cleardevice();

51     setcolor(black);

52     botton b1(

100,

100,

35,20,

"檔案");

53     getch();

54     b1.lbotton_down();

55     getch();

56     b1.lontton_up();

57     getch();

封裝了乙個簡單的登錄檔操作類

if defined afx registry h e0610a5d 7166 4d02 9d7e 11af7cf8e229 included define afx registry h e0610a5d 7166 4d02 9d7e 11af7cf8e229 included 建立新鍵的返回值 i...

單鏈表 封裝了乙個類 2

對單鏈表的相關介紹在這裡。單鏈表 封裝了乙個類 1 中實現了一種類的封裝,不過其中結點的插入仍然在鍊錶頭部進行,所以tail指標除了帶來一些小麻煩外,形同虛設。在此,將tail指標利用起來,讓每乙個結點都從鍊錶的尾部插入,因為一開始,讓tail與head都指向了頭結點,所以不用考慮插入的結點是否是整...

乙個封裝了localStorage的增刪改查的方法

localstorage的增刪改查都其實比較簡單,每次需要判斷瀏覽器是否禁用,這挺麻煩的 而且沒有像cookie一樣的,自動過期時間,長期下去會有垃圾資料在裡面 我們知道android的系統只支援5m儲存空間,iphone是10mb,一旦超過限制會提示使用者,甚至報錯。一 包含一下功能 1 定時清理...