8
修改传入参数是否是反模式?[关闭]
我正在用Java编程,并且我总是使转换器像这样: public OtherObject MyObject2OtherObject(MyObject mo){ ... Do the conversion return otherObject; } 在新的工作场所中,模式是: public void MyObject2OtherObject(MyObject mo, OtherObject oo){ ... Do the conversion } 对我来说,这有点臭,因为我习惯于不更改传入的参数。此传入参数更改是反模式吗?它有一些严重的缺点吗?