The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
1answer
43 views

Null check emitted for 'this' access?

When you access an own instance field via the this reference (for example, an object or int field from a private method), the generated Android Dalvik bytecode will contain an iget bytecode ...
0
votes
3answers
99 views

Null or empty check for a string varialbe in sql server 2008

if((isnull(@value,''))='') I want to know whether the above piece of code works in checking if the variable is null or empty.
1
vote
4answers
168 views

Java string null check by != null or !str.equals(null)? [duplicate]

What's the best way to check for not null values in java. String query ="abcd"; query != null vs !query.equals(null). which is better?why?
2
votes
3answers
416 views

javax.annotation.Nonnull vs assert

I'm using Findbugs and javax.annotation.Nonnull on method parameters. On private methods I usuallt add an assert line to check for nullness like private void myMethod(@Nonnull String str) { ...
0
votes
7answers
90 views

difference between null != something and something != null

Is there a difference between null != something and something != null in Java. And if there is a difference then which one should I use and why??
0
votes
5answers
68 views

Can I include null-checking an object as another conditional in OR statement? [duplicate]

Possible Duplicate: Is relying on && short-circuiting safe in .NET? I wasn't sure how to phrase the title of the question correctly, but it's very simple to explain with a single ...
2
votes
5answers
94 views

Does C# Have An Operation Similiar to JavaScript's || Setter?

Does C# have a similar operation to JavaScript's || setter? For example, in JavaScript, if I want to check if a value is null and set a default, I can do something like this: function foo(val){ ...
0
votes
1answer
19 views

Is it better to check for null and return or check for non-null and continue?

Given the following basic class: public class MyClass { private object m_memberVariable; public MyClass() { this.m_memberVariable = new object(); } } Which of the ...
0
votes
0answers
365 views

Print When Expression in iReport - comparing blank values [duplicate]

Possible Duplicate: Multiple queries in a single jasper document How to hide textfield when output is null? I am using iReport tool for reports designing. How can I check field's value ...
1
vote
2answers
77 views

Can default checks against null be done in a better way?

Quite often I find myself in need of writing stuff similar to: _parsedBetData["prizeLevel"] = params["prizeLevel"] == null ? "default" : params["prizeLevel"]; I am curious if there is a better way ...
0
votes
3answers
201 views

Performance hit of checking for null

Can anyone tell me what the performance cost is of checking if an object or property of an object is null in c#? I am working on an ASP.NET MVC application that the null checking is being done in the ...
1
vote
1answer
150 views

Easy way to know which methods return null in .NET Framework [closed]

I want to be able to know which methods return null from .NET Framework. For example; when I call a search method from IQueryable, if the search did not find any results will it return null or an ...
5
votes
2answers
197 views

Why does String.Equals(Object obj) check to see if this == null? [duplicate]

Possible Duplicate: Why check this != null? // Determines whether two strings match. [ReliabilityContract(Consistency.WillNotCorruptState, Cer.MayFail)] public override bool Equals(Object ...
8
votes
3answers
224 views

Null checking extension method

So, I'm doing a lot of database work in an application - and there are several possible return values of my caching system. It can return null, it can return a default (type) or it can return an ...
5
votes
1answer
1k views

How to check a value in a SQLite column is NULL or not with C API?

I'm using SQLite with C API. On C API, I can check the result value of a column with sqlite3_column_* functions. the problem is there is no function for the case of the value is NULL. Of course, I can ...
12
votes
2answers
373 views

Comparing a generic against null that could be a value or reference type?

public void DoFoo<T>(T foo) where T : ISomeInterface<T> { //possible compare of value type with 'null'. if (foo == null) throw new ArgumentNullException("foo"); } I'm purposely ...
2
votes
1answer
194 views

CA1062 (Code Analysis) disagrees with ReSharper — Who wins?

protected override void OnTextInput(TextCompositionEventArgs e) { e.Handled = true; DoSomething(e.Text); } If I check for null, CA is happy, but ReSharper says that the null check will ...
4
votes
2answers
2k views

C#: How to perform a null-check on a dynamic object

How do I perform a null-check on a dynamic object? Pseudo code: public void Main() { dynamic dynamicObject = 33; if(true) { // Arbitrary logic dynamicObject = null; } ...