Is
if(!!object)
{
// do something if object found
}
a much more guarenteed way to see if any object is present?
if(object)
{
}
|
Is
a much more guarenteed way to see if any object is present?
|
|||
|
|
the safest way to check that something is defined:
|
|||||||||
|
|
There are so many ways to check that...
Etc. |
|||
|
|