I declare a variable:

public int left;

Sometimes it is assigned a value other times not. Obviously I want to catch times when it isn't assign to avoid errors but I can't find a way to do it I've tried:

if (left != null) {

But null can't be used with type int.

Help!

DJ