I am trying to Implement a doubly linked with null objects at the beginning and end of the list using null object design pattern. So an empty list will contain two null objects. So I wrote this code Does this follow null object design pattern? If not how can I achieve that. ANy suggestions will be appreciated.
feedback
|
must be in so
also you can make all methods from | |||||
feedback
|
|
No, your code doesn't implement For example:
And then:
| |||||||
feedback
|
|
We use Null object design pattern if we want to assign some default behaviors (or prevent some behaviors to happen as a default behavior) For example using Null object pattern we can replace this code :
wtih this one:
Thus a Null Object design pattern actually uses a default object reference (not a null reference ) | |||
|
feedback
|