“Долго до int java” Ответ

долго до int java 8

import static java.lang.Math.toIntExact;

long foo = 10L;
int bar = toIntExact(foo);
2 Programmers 1 Bug

Java долго до Int

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

Java долго до Int

long foo = 10L;
int bar = (int) foo;
Embarrassed Earthworm

Долго до int java

long a = 200L;
int x = (int)a;
Proton

Ответы похожие на “Долго до int java”

Вопросы похожие на “Долго до int java”

Больше похожих ответов на “Долго до int java” по Java

Смотреть популярные ответы по языку

Смотреть другие языки программирования