本文主要是介绍Code Fragment-使用摩根定理在判断条件中,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
本文参考自《编写可读代码的艺术》,这本书写的非常好!
对于一个布尔表达式,有两种写法:
- ! (a or b or c) = ( !a ) and ( !b ) and ( !c )
- ! ( a and b and c) = ( !a ) or ( !b ) or (!c)
- 一个例子
if (!(fileExist && !isProcted)) {System.out.println("Sorry, could not read the file"); }
- 修改后,感觉更容易理解
if (!fileExist || isProcted) {System.out.println("Sorry, could not read the file"); }
这篇关于Code Fragment-使用摩根定理在判断条件中的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!