> Hi
> Can u pl help me .
> code]
> Long x = new Long("42");
> Long y = new Long(42);[/code]
> What is the difference between these two.
The first one takes String as a argument to the constructor, second one takes Long as an argument( although its int , but Long is broader so its ok)
Both of them retuen Long type object . Please refer documentation.