Possible Duplicate:
Double or double, String or string
What is the difference between using a type like double and Double?
Double testNumber = 0;
double testNumber2 = 0;
What is the difference between them? Also, same question holds for int and (various) IntXX, etc;
Can someone explain?
Thanks!

