Tagged Questions

Certain protocols and adapters can explode when processing an actual null. To avoid this issue, and to make code simpler (dispense with all null checks on the client side), a special "token" object that represents a "null" is used in place of a null

learn more… | top users | synonyms

12
votes
4answers
137 views

Ruby nil-like object

How can I create an Object in ruby that will be evaluated to false in logical expressions similar to nil? My intention is to enable nested calls on other Objects where somewhere half way down the ...
6
votes
8answers
1k views

C++: Return NULL instead of struct

I have a struct Foo. In pseudocode: def FindFoo: foo = results of search foundFoo = true if a valid foo has been found return foo if foundFoo else someErrorCode How can I accomplish ...
5
votes
2answers
93 views

Which pattern would I prefer?

In our project we need to store some object (User, for example) and also User class must have a validation flag (methods like setOutdated and isOutdated) From time to time, our User object may be ...
4
votes
4answers
137 views

Trying to refactor to Null object pattern but the end result seems worse

I'm refactoring a big class that has a lot of checks for null all over the place into using the null object pattern. So far it's been an almost smooth change but I am having a couple of issues with ...
4
votes
6answers
127 views

Is it feasible to create a NullObject for every class? ( with a tool of course )

The NullObjectPattern is intended to be a "safe" ( neutral ) behavior. The idea is create an object that don't do anything ( but doesn't throw NullPointerException either ) For instance the class ...
3
votes
1answer
175 views

Get a dummy slf4j logger?

Can I get a dummy logger from slf4j? (Think the null object design pattern.) If so, can someone provide an example? Or will I have to implement a custom logger if I want to do that? I'm hoping to ...
3
votes
3answers
315 views

Null Object Pattern to avoid Null checks?

Lately I have come across Null Object design pattern and my colleagues say it can be used to do away with the null pointer checks that are encountered throughout the code. for e.g suppose a DAO ...
2
votes
2answers
84 views

Can I tell NHibernate not to save certain objects?

I am using NHibernate with a NullObject pattern to make my views simpler. I use a solution found here by James Gregory public Address GetAddressOrDefault() { return Address ?? new NullAddress(); } ...
2
votes
2answers
59 views

Just for fun - can I write a custom NilClass for a specific use?

EDIT | Or another question, on the same object subject. Can I write my own class definition that would cause the following all to work? o = WeirdObject.new puts "Object o evaluates as true in ...
1
vote
2answers
86 views

Can StructureMap return a Special Case?

I want to have StructureMap return a Special Case called "None" for a certain instance. Say I Have this class MyUser which is scoped as HttpContext. I want to have a nested, dreived class None (ie. ...
1
vote
1answer
73 views

Good case for a Null Object Pattern? (Provide some service with a mailservice)

For a website I'm working on, I made an Media Service object that I use in the front end, as well as in the backend (CMS). This Media Service object manipulates media in a local repository (DB); it ...
0
votes
3answers
61 views

Null Object Design Pattern in LinkedList

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 ...
0
votes
2answers
55 views

null pattern and composite pattern don't play nice together

In this composite tree I am keeping a reference to the parent node for flexible tree traversal. I don't want to have to check the parent for a null reference all the time but if I make a NullNode ...
0
votes
3answers
125 views

Interesting thought problem on refactoring code that returns a null

I am interested in hearing your feedback. I've recently seen some Java code that is implemented in the following way: Object1 SomeMethod(String key) { Object1 object1 = null; ...
0
votes
3answers
593 views

Null pattern with QObject

(C++/Qt) I have a smart pointer to a QObject. Let's say a QWeakPointer. For some external reason (something that might happen in another object or due to an event), it is possible that the pointed ...
0
votes
3answers
288 views

How can I make NHibernate aware of a first-class “Null Object”, without database persistence?

I would like to make use of the Null Object pattern in my domain, but I don't want to have records in my database that relate to it - I would prefer it if NHibernate were able to map a SQL null value ...