如何有效避免大量重复的switch分支
最近学习设计模式相关知识,结合前面的DRBD源码分析掌握了表驱动编程模式,这里作一些简单的总结。
先看一段C代码:
typedef int type;typedef void(*draw)(void);
struct shape
{
type t;
draw f;
};
struct rectange
{
type t;
int a;
draw f;
};
struct circle
{
type t;
int r;
draw f;
};
#define T1 0
#define T2 1
#define T3 2
void drawall(shape[] s, int count)
{
for (int i = 0; i != count; i++)
{
switch((s + i)->t)
{
case T1:
((struct shape*)(s + i))->f();
break;
case T2:
((struct rectange*)(s + i))->f();
break;
case T3:
((struct circle*)(s + i))->f();
break;
default:
break;
}
}
}
按照如上思路修改之后的代码应该是类似这样的:
struct base{
type t;
draw f;
};
typedef int type;
typedef void(*draw)(struct base*);
struct shape
{
type t;
draw f;
};
struct rectange
{
type t;
draw f;
int a;
};
struct circle
{
type t;
draw f;
int r;
};
#define T1 0
#define T2 1
#define T3 2
void drawall(struct base[] s, int count)
{
struct base* b = s;
for (int i = 0; i != count; i++)
{
(b + i)->draw(b + i);
}
}
按照表驱动模式进一步改造该代码:
struct config{
type t;
int l;
};
typedef int type;
typedef void(*draw)(struct config*);
void drawshape(struct config*);
void drawsrectange(struct config*);
void drawcircle(struct config*);
#define T1 0
#define T2 1
#define T3 2
draw call_table[] = {
[T1] = {&drawshape},
[T2] = {&drawsrectange},
[T3] = {&drawcircle},
};
void drawall(struct config[] s, int count)
{
draw* d = call_table;
struct config* b = s;
for (int i = 0; i != count; i++)
{
(*(d + (b + i)->t))(b + i);
}
}
这样代码看起来是简洁了,但是可读性降低了不少。
建议继续学习:
- 从Java视角理解CPU上下文切换(Context Switch) (阅读:5422)
- 从 if else 到 switch case 再到抽象 (阅读:2475)
- JavaScript:假如default不是switch的最后一项 (阅读:2090)
- Switch Case中的经典 (阅读:1881)
扫一扫订阅我的微信号:IT技术博客大学习
- 作者:童燕群 来源: 忘我的追寻
- 标签: switch
- 发布时间:2013-10-29 12:21:06
- [67] Go Reflect 性能
- [67] Oracle MTS模式下 进程地址与会话信
- [67] 如何拿下简短的域名
- [61] IOS安全–浅谈关于IOS加固的几种方法
- [60] 图书馆的世界纪录
- [59] 【社会化设计】自我(self)部分――欢迎区
- [58] android 开发入门
- [56] 视觉调整-设计师 vs. 逻辑
- [49] 给自己的字体课(一)——英文字体基础
- [47] 界面设计速成