You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
public class IntToLongExample2{
public static void main(String args[]){
int i=100;
Long l= new Long(i);//first way
Long l2=Long.valueOf(i);//second way
System.out.println(l);
System.out.println(l2);
}}