Is there a shortcut to the following statement?
if(b!=null) a=b;
The best I can come up with is
a=b??a;
I want to