前段時間寫了篇介紹命令行交互工具,不知道各位有沒去看看源碼,里邊有個寫法和前段時間介紹的鏈表使用很像,這就是等下介紹的表驅(qū)編程模式,表驅(qū)的核心就是“表格”,在多條件判斷的時候會使用到多if嵌套,或者switch語法進行處理,但是這樣寫有時候也挺麻煩的,在這樣的場景下就可以考慮使用表驅(qū)編程模式,把需要處理的事件或數(shù)據(jù)放到對應(yīng)的表格中,最后就形成了一整個表,就可以進行查表然后進行對應(yīng)操作,下面舉個簡單案例:
| 頭文件
#include "stdio.h" #include "stdint.h" typedef struct { void(*fp)(void); } static_t; extern static_t static_cmd[]; void shell_ls_cmd(void); void shell_test_cmd(void); void shell_test_fp(void); void handle(void); void push(void (*fp)(void)); void free(uint8_t select);
|定義一個表
static_tstatic_cmd[]= { {shell_ls_cmd}, {shell_test_cmd}, {NULL} };
| 定義回調(diào)函數(shù)
void shell_ls_cmd(void) { printf("ls command "); } void shell_test_cmd(void) { printf("test command "); } void shell_test_fp(void) { printf("fp command "); }
| 遍歷表
void handle(void) { for (uint8_t i = 0; static_cmd[i].fp != NULL; i++) { static_cmd[i].fp(); } }
| 添加表格
void push(void (*fp)(void)) { uint8_t i = 0; // 寫法1 for(i = 0; static_cmd[i].fp != NULL; i++){}; // 寫法2 /* while(static_cmd[i].fp != NULL){ i++; } */ static_cmd[i].fp = fp; static_cmd[i+1].fp = NULL; }
|刪除表格
void free(uint8_t select) { if(static_cmd[select].fp == NULL) { return; } for (uint8_t i = select; static_cmd[i].fp != NULL; i++) { static_cmd[i].fp = static_cmd[i+1].fp; } }
|簡單調(diào)用
int main() { handle(); printf(" "); push(shell_test_fp); printf(" "); handle(); printf(" "); free(1); printf(" "); handle(); while (1) { /* code */ } }
|查看結(jié)果
表驅(qū)在項目中很常見,適當使用能有效提高代碼的可讀性,也方便后期維護的迭代!
-
驅(qū)動
+關(guān)注
關(guān)注
12文章
1818瀏覽量
85108 -
C語言
+關(guān)注
關(guān)注
180文章
7594瀏覽量
135857 -
編程
+關(guān)注
關(guān)注
88文章
3565瀏覽量
93536 -
源碼
+關(guān)注
關(guān)注
8文章
632瀏覽量
29110 -
命令行
+關(guān)注
關(guān)注
0文章
77瀏覽量
10377
原文標題:C語言|表驅(qū)動
文章出處:【微信號:玩轉(zhuǎn)單片機,微信公眾號:玩轉(zhuǎn)單片機】歡迎添加關(guān)注!文章轉(zhuǎn)載請注明出處。
發(fā)布評論請先 登錄
相關(guān)推薦
評論