nullable types

  • Thread starter Thread starter Mike P
  • Start date Start date
M

Mike P

What are nullable types used for? The only use I can think of is where
I have a method like this where some values being passed to it may be
null :

public int AddUser(int? UserRegion, string UserName etc)

You might have an Add User page where some of the fields do not have a
value entered by the user, so you can account for this by making these
types nullable in the method above. Is this the right usage of nullable
types? And what are the other uses?
 
Hi -

The use you state is valid.

They really come into their own when data needs to be able to identify when
it isn't holding a value. In SQL a statement could return a value or it
could return NULL. This doesn't cause too much problem for reference types
but obviously a value type needs a value (not unreasonable); this is where
the problem occurs.

You could assign an arbitrary NULL value (say 0) but it doesn't really model
NULL correctly as it's obviously in the range that the value holds.

Nullable types are created by the generic template struct Nullable and all
they essentially do is to maintain a boolean alongside the value indicating
whether it has been assigned to or not.

HTH

- Andy
 
That would seem to be a reasonable usage; more typical is representing data
from a database, where a null value has a specific meaning; otherwise you
need to rely on magic numbers such as "int.MinValue" or "-1" meaning "not
specified", or keep a separate "is <x> specified" flag. The nullable type
allows you to handle this directly, without risking messing up the database
by inserting a -1 by mistake.

Marc
 
Hi,

Basically that is the kind of situation you use them for.

Personally I think that the more common example is a date that is not set.
This is a fairly common escenario when dealiing with DBs
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

nullable types 2
Nullable types – what does a null value represent? 6
Nullable class 2
Reflection and Nullables 7
using nullable types in generics 3
How to... 1
Nullable Enum 2
Nullable parameter type name 2

Back
Top