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.

link|improve this question

71% accept rate
Is this your complete code ? – Sajan Chandran Feb 19 at 10:54
I have updated the code. – Nevzz03 Feb 19 at 11:05
feedback

3 Answers

up vote 1 down vote accepted
public static final NewLink NULL_NODE = new NewLink(); 

must be in NewLink class

so

firstNode = NewLink.NULL_NODE;
secondNode = NewLink.NULL_NODE;

also you can make all methods from NewLink - abstract
and make two nested classes: for NULL objects and for not NULL object.
It's can be very helpful in difficult situations

link|improve this answer
i updated the code as per your suggestions. let me know if it is right now? – Nevzz03 Feb 19 at 11:10
It is fine now:) – Petar Minchev Feb 19 at 11:13
feedback

No, your code doesn't implement Null Object Design Pattern. Its essence is not to use null but to create an object which will represent the null.

For example:

public static final NewLink NULL_NODE = new NewLink();

And then:

firstNode = NULL_NODE;
lastNode  = NULL_NODE;
link|improve this answer
I have updated the code. Let me know if it is right? – Nevzz03 Feb 19 at 11:04
Yep, that's the basic idea. – Petar Minchev Feb 19 at 11:05
@Nevzz03 - See user1143825 answer for moving the definition to the other class. It is more logical. – Petar Minchev Feb 19 at 11:09
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 :

if(myObj!=null) 
myObj.DoSomething();
else
DoSomethingElse();

wtih this one:

myObj.DoSomething() //assuming that myObj can be a Null object (not a null reference) that has implemented DoSomethingElse when you ask it to DoSomething()

Thus a Null Object design pattern actually uses a default object reference (not a null reference )

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.