Answers for "type casting long to int in java"

3

long to int java 8

import static java.lang.Math.toIntExact;

long foo = 10L;
int bar = toIntExact(foo);
Posted by: Guest on April-03-2020
4

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);
    	
        }
    }
Posted by: Guest on November-21-2020

Code answers related to "type casting long to int in java"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language