メソッド呼び出しで現在のオブジェクトを渡すことは、良い/悪い/許容できる慣行ですか。次のように:
public class Bar{
public Bar(){}
public void foo(Baz baz){
// modify some values of baz
}
}
public class Baz{
//constructor omitted
public void method(){
Bar bar = new Bar();
bar.foo(this);
}
}
具体的には、ラインはbar.foo(this)
許容されますか?