“Casting w Javie” Kod odpowiedzi

Casting typu Java

public class Main {
  public static void main(String[] args) {
    int myInt = 9;
    double myDouble = myInt; // Automatic casting: int to double

    System.out.println(myInt);      // Outputs 9
    System.out.println(myDouble);   // Outputs 9.0
  }
}
The Cat Coder

Casting typu Java

Lowest to highest primitive data types: Byte-->Short-->Int-->Long-->Float-->Double
Sandeep Choudhary

= Casting operatora w Javie

    int x = 0;
    x += 1.1;    // just fine; hidden cast, x == 1 after assignment
    x = x + 1.1; // won't compile! 'cannot convert from double to int'
Selfish Seahorse

Casting w Javie

Byte-->short-->char-->Int-->long-->float-->double
Blue-eyed Barracuda

Odpowiedzi podobne do “Casting w Javie”

Pytania podobne do “Casting w Javie”

Więcej pokrewnych odpowiedzi na “Casting w Javie” w Java

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu