优美的代码像诗一样!

网上曾有中日程序员代码风格的讨论,其实两种风格我都不喜欢。

让我们看看美国程序员是怎么做的吧。

以下摘自《代码阅读方法与实践》第2.9节P32-36。

第一段代码:

op = &( !x ? ( !y ? upleft : ( y == bottom ? lowleft : left)) :
( x == last ? ( !y ? upright : ( y == bottom ? lowright : right )) :
( !y ? upper : ( y == bottom ? lower : normal))))[ w -> orientation];

噢!但愿我没有打错。这段代码我足足看了十分钟也没明白究竟。


一般来说,可以改成下面这样。

struct options *locations[3][3] = {
  {upleft,     upper,     upright};
  {left,       normal,    right},
  (lowleft,    lower,     lowringt},
};

int xlocation, ylocation;

if (x == 0)
   xlocation = 0;
else if (x == last)
   xlocation = 2;
else
   xlocation =1;

if (y == 0)
   ylocation = 0;
else if (y == bottom)
   ylocation = 2;
else
   ylocation =1;

op = &(locations[ylocation][xlocation])[w->orientotion};

不过一个叫Guy Steele的提出了以下代码。

op =
   &(        ! y ?(x ? upleft  : x != last ?   uper : upright):
    y != bottom ? (x ? left    : x != last ? normal : right):
                  (x ? lowleft : x != last ? lower  : lowright):
    )[w -> orientation];

谁说代码的可读性和效率不能兼顾的。

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值