1 Kasım 2018 Perşembe

Nümerik Literal

Float
Açıklaması şöyle. Literal sonuna f veya F harfi gelir.
A floating-point literal is of type float if it is suffixed with an ASCII letter F or f; otherwise, its type is double and it can optionally be suffixed with an ASCII letter D or d.
Örnek
Şöyle yaparız.
float value = 19.5f;
Örnek
Şöyle yaparız.
Foo.bar(11.5f, 11.5f );
Şu kod ile aynıdır.
float a = 11.5;
float b = 11.5;
Foo.bar(a, b)
Double
Şöyle yaparız.
Foo.bar(11.5, 11.5));
Şu kod ile aynıdır.
double a = 11.5;
double b = 11.5;
Foo.bar (a, b)
Octal Literal
Açıklaması şöyle.
An octal numeral consists of an ASCII digit 0 followed by one or more of the ASCII digits 0 through 7 interspersed with underscores, and can represent a positive, zero, or negative integer.
Şöyle yaparız.
int g = 014;
Literal Okumayı Kolaylaştırmak
Java 7'den itibaren rakamlar arasına okumayı kolaylaştırma amaçlı _ (underscore) karakteri konulabiliyor.
Örnek
Şöyle yaparız.
int i;
//Java 7 allows underscore in integer
i=3455_11_11;

Hiç yorum yok:

Yorum Gönder