جافا Java
Ir al canal en Telegram
ليس عيبًا ألا تعرف شيئًا، ولكن العيب انك لا تريد أن تتعلم
Mostrar más6 342
Suscriptores
+324 horas
-97 días
-4730 días
Carga de datos en curso...
Canales Similares
Nube de Etiquetas
Menciones Entrantes y Salientes
---
---
---
---
---
---
Atraer Suscriptores
junio '26
junio '26
+16
en 0 canales
mayo '26
+38
en 0 canales
Get PRO
abril '26
+61
en 0 canales
Get PRO
marzo '26
+49
en 0 canales
Get PRO
febrero '26
+51
en 0 canales
Get PRO
enero '26
+69
en 0 canales
Get PRO
diciembre '25
+159
en 0 canales
Get PRO
noviembre '25
+86
en 0 canales
Get PRO
octubre '25
+90
en 0 canales
Get PRO
septiembre '25
+114
en 0 canales
Get PRO
agosto '25
+63
en 1 canales
Get PRO
julio '25
+58
en 0 canales
Get PRO
junio '25
+48
en 0 canales
Get PRO
mayo '25
+83
en 2 canales
Get PRO
abril '25
+57
en 0 canales
Get PRO
marzo '25
+39
en 0 canales
Get PRO
febrero '25
+60
en 0 canales
Get PRO
enero '25
+116
en 1 canales
Get PRO
diciembre '24
+168
en 1 canales
Get PRO
noviembre '24
+236
en 2 canales
Get PRO
octubre '24
+331
en 1 canales
Get PRO
septiembre '24
+278
en 1 canales
Get PRO
agosto '24
+171
en 1 canales
Get PRO
julio '24
+373
en 0 canales
Get PRO
junio '24
+114
en 1 canales
Get PRO
mayo '24
+250
en 1 canales
Get PRO
abril '24
+117
en 0 canales
Get PRO
marzo '24
+194
en 1 canales
Get PRO
febrero '24
+169
en 0 canales
Get PRO
enero '24
+400
en 0 canales
Get PRO
diciembre '23
+202
en 1 canales
Get PRO
noviembre '23
+130
en 0 canales
Get PRO
octubre '23
+154
en 0 canales
Get PRO
septiembre '23
+245
en 0 canales
Get PRO
agosto '23
+216
en 0 canales
Get PRO
julio '23
+124
en 0 canales
Get PRO
junio '23
+96
en 0 canales
Get PRO
mayo '23
+100
en 0 canales
Get PRO
abril '23
+100
en 0 canales
Get PRO
marzo '23
+117
en 0 canales
Get PRO
febrero '23
+238
en 0 canales
Get PRO
enero '23
+185
en 0 canales
Get PRO
diciembre '22
+201
en 0 canales
Get PRO
noviembre '22
+133
en 0 canales
Get PRO
octubre '22
+178
en 0 canales
Get PRO
septiembre '22
+214
en 0 canales
Get PRO
agosto '22
+123
en 0 canales
Get PRO
julio '22
+133
en 0 canales
Get PRO
junio '22
+130
en 0 canales
Get PRO
mayo '22
+165
en 0 canales
Get PRO
abril '22
+214
en 0 canales
Get PRO
marzo '22
+320
en 0 canales
Get PRO
febrero '22
+224
en 0 canales
Get PRO
enero '22
+609
en 0 canales
Get PRO
diciembre '21
+197
en 0 canales
Get PRO
noviembre '21
+252
en 0 canales
Get PRO
octubre '21
+140
en 0 canales
Get PRO
septiembre '21
+146
en 0 canales
Get PRO
agosto '21
+190
en 0 canales
Get PRO
julio '21
+197
en 0 canales
Get PRO
junio '21
+327
en 0 canales
Get PRO
mayo '21
+440
en 0 canales
Get PRO
abril '21
+161
en 0 canales
Get PRO
marzo '21
+108
en 0 canales
Get PRO
febrero '21
+196
en 0 canales
Get PRO
enero '21
+1 242
en 0 canales
| Fecha | Crecimiento de Suscriptores | Menciones | Canales | |
| 07 junio | +4 | |||
| 06 junio | +4 | |||
| 05 junio | +1 | |||
| 04 junio | +1 | |||
| 03 junio | +2 | |||
| 02 junio | +1 | |||
| 01 junio | +3 |
Publicaciones del Canal
| 2 | ❓ حساب على char
char arithmeticchar c = 'A';
c += 2;
System.out.println(c); | 106 |
| 3 | Choose your answer: | 178 |
| 4 | ❓ ثبات toString مقابل تعديل StringBuilder
StringBuilder mutabilityStringBuilder sb = new StringBuilder("a");
String s = sb.toString();
sb.append("b");
System.out.println(s); | 155 |
| 5 | Choose your answer: | 199 |
| 6 | ❓ إزالة أثناء for-each
Removing during for-eachimport java.util.*;
List<Integer> list = new ArrayList<>(java.util.Arrays.asList(1,2,3));
for (Integer v : list) {
if (v == 2) list.remove(v);
}
System.out.println(list.size()); | 189 |
| 7 | Choose your answer: | 221 |
| 8 | ❓ نسخ المصفوفة copyOf
Arrays.copyOf cloneint[] x = {1,2};
int[] y = java.util.Arrays.copyOf(x, x.length);
y[0] = 9;
System.out.println(x[0]); | 192 |
| 9 | Choose your answer: | 239 |
| 10 | ❓ حقول مقابل دالة مُعاد تعريفها
Fields vs overridden methodclass A { int v = 1; int get(){ return v; } }
class B extends A { int v = 2; int get(){ return v; } }
A a = new B();
System.out.println(a.v + "," + a.get()); | 216 |
| 11 | Choose your answer: | 251 |
| 12 | ❓ اختيار overload مع null
Overload resolution with nullvoid f(Object o){ System.out.print("O"); }
void f(String s){ System.out.print("S"); }
f(null); | 236 |
| 13 | Choose your answer: | 286 |
| 14 | ❓ تمرير مصفوفة لميثود
Passing array to methodstatic void inc(int[] a){
for (int i = 0; i < a.length; i++) a[i]++;
}
int[] a = {0,1,2};
inc(a);
System.out.println(a[2]); | 268 |
| 15 | 📢 Advertising in this channel
You can place an ad via Telega․io. It takes just a few minutes.
Formats and current rates: View details | 71 |
| 16 | Choose your answer: | 296 |
| 17 | ❓ switch مع break
switch with breakint n = 1;
switch (n) {
case 1: System.out.print("X"); break;
default: System.out.print("Y");
} | 282 |
| 18 | Choose your answer: | 298 |
| 19 | ❓ اقتران else بالأقرب
else pairs with nearest ifint x = 0, y = 10;
if (y > 0)
if (x == 1) System.out.print("A");
else System.out.print("B"); | 271 |
| 20 | Choose your answer: | 282 |
¡Ya disponible! Investigación de Telegram 2025 — los principales insights del año 
