Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

nullable types

0 views
Skip to first unread message

Mike P

unread,
Aug 31, 2006, 6:50:37 AM8/31/06
to
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?

*** Sent via Developersdex http://www.developersdex.com ***

Marc Gravell

unread,
Aug 31, 2006, 7:04:47 AM8/31/06
to
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


Andy Bates

unread,
Aug 31, 2006, 7:03:36 AM8/31/06
to
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

"Mike P" <mike...@gmail.com> wrote in message
news:Otp7LtOz...@TK2MSFTNGP03.phx.gbl...

Ignacio Machin ( .NET/ C# MVP )

unread,
Aug 31, 2006, 11:03:17 AM8/31/06
to
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


--
--
Ignacio Machin,
ignacio.machin AT dot.state.fl.us
Florida Department Of Transportation

"Mike P" <mike...@gmail.com> wrote in message
news:Otp7LtOz...@TK2MSFTNGP03.phx.gbl...

0 new messages