“Co jest dosłowne w Javie” Kod odpowiedzi

Co jest dosłowne w Javie

public class Test {
    public static void main(String[] args)
    {
        int a = 101; // decimal-form literal
        int b = 0100; // octal-form literal
        int c = 0xFace; // Hexa-decimal form literal
        int d = 0b1111; // Binary literal
        System.out.println(a);
        System.out.println(b);
        System.out.println(c);
        System.out.println(d);
    }
}
CodeExampler

Co jest dosłowne w Javie

public class Test {
    public static void main(String[] args)
    {
        int a = 101; // decimal-form literal
        int b = 0100; // octal-form literal
        int c = 0xFace; // Hexa-decimal form literal
        int d = 0b1111; // Binary literal
        System.out.println(a);
        System.out.println(b);
        System.out.println(c);
        System.out.println(d);
    }
}
CodeExampler

Literały Java

int a = 1;
float b = 2.5;
char c = 'F';
SAMER SAEID

Literały smyczkowe Java

String str1 = "Java Programming";
String str2 = "Programiz";
SAMER SAEID

Odpowiedzi podobne do “Co jest dosłowne w Javie”

Pytania podobne do “Co jest dosłowne w Javie”

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

Przeglądaj inne języki kodu