Java + Convert Long To Int Code Example


Example 1: java long to int

public class LongToIntExample2{            	public static void main(String args[]){                    	Long l= new Long(10);         	int i=l.intValue();         	System.out.println(i);     	         }     }

Example 2: java long to integer

// auto-unboxing does not go from Long to int directly, so Integer i = (int) (long) theLong;

Comments

Popular posts from this blog

Are Regular VACUUM ANALYZE Still Recommended Under 9.1?

Can Feynman Diagrams Be Used To Represent Any Perturbation Theory?