11
votes
17answers
517 views
Is it good practice to NULL a pointer after deleting it?
I'll start out by saying, use smart pointers and you'll never have to worry about this.
What are the problems with the following code?
Foo * p = new Foo;
// (use p)
delete p;
p = NULL;
This was …
0
votes
3answers
37 views
Is it a good practice to set the default value of some field/column as NULL in MySQL?
What are the disadvantages to do so?
5
votes
7answers
551 views
C#: Alternative to GenericType == null
I need to check a generic object for null, or default(T). But I have a problem... Currently I have done it like this:
if (typeof(T).IsValueType)
{
if(default(T).Equals(thing))
// Do something
…
2
votes
5answers
93 views
is this explicit cast necessary when I know it isn’t null?
I have the following:
MyEnum? maybeValue = GetValueOrNull();
if (null != maybeValue)
{
MyEnum value = (MyEnum)maybeValue;
}
What I want to know is if that explicit (MyEnum) cast is necessary …
0
votes
3answers
28 views
Checks nulls using LINQ
Hi all,
I have this code. How can I check null values for SingleOrDefault method ??
public static List<ETY.Rol> GetRolesByApplicationAndCompany(this UsuarioContext usuario, int company, int …
0
votes
5answers
61 views
Returning the value of a new CheckBox in Flex Air
I am trying to save settings to an XML File and setting the relevant data if the check box is checked or not.
private static function createXMLData():void
{
prefsXML = <preferences/>;
…
0
votes
2answers
200 views
Null Reference Exception In LINQ DataContext
I have a Null Reference Exception Caused by this code:
var recentOrderers = (from p in db.CMS
where p.ODR_DATE > DateTime.Today - new TimeSpan(60, 0, 0, 0)
select …
0
votes
4answers
24 views
SQL Server warning message about nulls
This warning message I get from time to time from SQL server ...
Warning: Null value is eliminated by an aggregate or other SET operation.
Is this just saying that a value that was Null is being set …
5
votes
9answers
884 views
Is there any reason to check for a NULL pointer before deleting ?
I see some legacy code checking for null before deleting the pointer.
as like below
if(NULL != pSomeObject)//any reason for checking for null
{
delete pSomeObject;
pSomeObject = NULL;//any reason …
6
votes
8answers
345 views
About the non-nullable types debate
I keep hearing people talk about how non-nullable reference types would solve so many bugs and make programming so much easier. Even the creator of null calls it his billion dollar mistake, and Spec# …
2
votes
4answers
47 views
Oracle View problem with Select and divison zero
Hi Folks,
following problem, i want to create an view in Oracle wich calculates an "utilization rate in percent".
AS SELECT
sw.SWITCH_ID,
sw.ASSET_ID,
sw.SYSTEMNAME,
…
1
vote
4answers
124 views
Which Exception to throw when a method try to use a field that can be null?
Hello,
I am actually working on a Framework development, which means require a really strong coding methodology.
I am facing a problem where I do not know which System.Exception derivated class I …
0
votes
0answers
18 views
Comparing window.parent/opener with NULL or ‘undefined’
If I have this method:
this.getForm = function ()
{
try
{
var frmIndex = arguments[0];
if (isNaN(frmIndex)) frmIndex = 1;
if (window !== null)
{
if (window.opener !== null)
{
…
0
votes
3answers
21 views
Replace or Disable null-value in Datagrid in a formsapplication
I'm working on a formsapplication with a datagrid in it.
How can I disable or replace (null)-values in cells when im databinding the grid to a database.
When I am in the Designer view and clicking on …
19
votes
13answers
557 views
Is null an Object?
Hi People!
I have very short question:
Is null an Object in Java?
Thank you.
