@java_hytc · 273 subscribers
The short link opens the channel straight in the Telegram app — not in a browser tab.
tg.me/go/java_hytcIs this your channel? Add @tgme as admin — and see how many people click your links. Get the stats →
Channel created July 7, 2024per Telegram
We have been tracking it since August 24, 2026
In all that time the channel has changed neither its name, nor its @username, nor its avatar.
We show only what we have seen ourselves.


byte: رقم صحيح 8-بت.
short: رقم صحيح 16-بت.
int: رقم صحيح 32-بت.
long: رقم صحيح 64-بت.
float: رقم عشري بدقة 32-بت.
double: رقم عشري بدقة 64-بت.
boolean: قيمة منطقية (true أو false).
char: حرف مفرد (يخزن رمز Unicode).
public class DataTypesExample {
public static void main(String[] args) {
byte b = 100;
short s = 1000;
int i = 10000;
long l = 100000L;
float f = 10.5f;
double d = 20.99;
boolean bool = true;
char ch = 'A';
String str = "Hello Java";
System.out.println("byte: " + b);
System.out.println("short: " + s);
System.out.println("int: " + i);
System.out.println("long: " + l);
System.out.println("float: " + f);
System.out.println("double: " + d);
System.out.println("boolean: " + bool);
System.out.println("char: " + ch);
System.out.println("String: " + str);
}
}