为什么要在Ruby中避免使用then关键字?

前端之家收集整理的这篇文章主要介绍了为什么要在Ruby中避免使用then关键字?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在几个 Ruby样式指南中提到你应该“永远不要使用”.就个人而言,我认为“then”关键字允许您使代码更密集,这往往更难阅读.这项建议还有其他理由吗?

解决方法

我几乎从不使用then关键字.但是,有一种情况我认为它大大提高了可读性.请考虑以下多条件if语句.

例A

if customer.jobs.present? && customer.jobs.last.date.present? && (Date.today - customer.jobs.last.date) <= 90
  puts 'Customer had a job recently'
end

线长太长.难以阅读.

例B

if customer.jobs.present? &&
   customer.jobs.last.date.present? &&
   (Date.today - customer.jobs.last.date) <= 90
  puts 'Customer had a job recently'
end

条件何处结束以及内部代码从何处开始.根据必须Ruby样式指南,你有一个额外的缩进空间用于多行条件,但我仍然觉得它不容易阅读.

例C

if customer.jobs.present? &&
   customer.jobs.last.date.present? &&
   (Date.today - customer.jobs.last.date) <= 90
then
  puts 'Customer had a job recently'
end

对我来说,示例C是目前最清楚的.而那就是利用当时的伎俩.

原文链接:https://www.f2er.com/ruby/269026.html

猜你在找的Ruby相关文章