|
2
|
|
edited Oct 11 '08 at 20:59
|
Two things:
- In your example you need two methods. The
perfom and the setInterface. With a visitor pattern you would only need one method, the perfom, usually called accept.
- If you need more than one 'performer', you will have to set the performer -via the
setInterface method- for eachtime you use it. This makes it impossible to make your class immutable.
|
|
|
|
1
|
|
answered Oct 11 '08 at 19:04
|
Two things:
- In your example you need two methods. The
perfom and the setInterface. With a visitor pattern you would only need one method, the perfom, usually called accept.
- If you need more than one 'performer', you will have to set the performer -via the
setInterface method- for each time you use it. This makes it impossible to make your class immutable.
|
|
|