重构与模式-代码坏味儿

重复代码(duplicated code)
方法过长(long method)
条件逻辑太复杂(conditional complexity)
基本类型迷恋(primitive obession)
不恰当的暴露(indecent exposure)
解决方案蔓延(solution sprawl)
异曲同工的类()
冗赘类(lazy class)
类过大(large class)
分支语句(switch statement)
组合爆炸(combinatorial explosion)
怪异解决方案(oddball solution)

你可能感兴趣的:(代码)