جافا Java
前往频道在 Telegram
6 137
订阅者
-124 小时
-27 天
-7330 天
数据加载中...
相似频道
标签云
进出提及
---
---
---
---
---
---
吸引订阅者
九月 '26
九月 '26
+31
在0个频道中
八月 '26
+43
在0个频道中
Get PRO
七月 '26
+51
在0个频道中
Get PRO
六月 '26
+52
在0个频道中
Get PRO
五月 '26
+38
在0个频道中
Get PRO
四月 '26
+61
在0个频道中
Get PRO
三月 '26
+49
在0个频道中
Get PRO
二月 '26
+51
在0个频道中
Get PRO
一月 '26
+69
在0个频道中
Get PRO
十二月 '25
+159
在0个频道中
Get PRO
十一月 '25
+86
在0个频道中
Get PRO
十月 '25
+90
在0个频道中
Get PRO
九月 '25
+114
在0个频道中
Get PRO
八月 '25
+63
在1个频道中
Get PRO
七月 '25
+58
在0个频道中
Get PRO
六月 '25
+48
在0个频道中
Get PRO
五月 '25
+83
在2个频道中
Get PRO
四月 '25
+57
在0个频道中
Get PRO
三月 '25
+39
在0个频道中
Get PRO
二月 '25
+60
在0个频道中
Get PRO
一月 '25
+116
在1个频道中
Get PRO
十二月 '24
+168
在1个频道中
Get PRO
十一月 '24
+236
在2个频道中
Get PRO
十月 '24
+331
在1个频道中
Get PRO
九月 '24
+278
在1个频道中
Get PRO
八月 '24
+171
在1个频道中
Get PRO
七月 '24
+373
在0个频道中
Get PRO
六月 '24
+114
在1个频道中
Get PRO
五月 '24
+250
在1个频道中
Get PRO
四月 '24
+117
在0个频道中
Get PRO
三月 '24
+194
在1个频道中
Get PRO
二月 '24
+169
在0个频道中
Get PRO
一月 '24
+400
在0个频道中
Get PRO
十二月 '23
+202
在1个频道中
Get PRO
十一月 '23
+130
在0个频道中
Get PRO
十月 '23
+154
在0个频道中
Get PRO
九月 '23
+245
在0个频道中
Get PRO
八月 '23
+216
在0个频道中
Get PRO
七月 '23
+124
在0个频道中
Get PRO
六月 '23
+96
在0个频道中
Get PRO
五月 '23
+100
在0个频道中
Get PRO
四月 '23
+100
在0个频道中
Get PRO
三月 '23
+117
在0个频道中
Get PRO
二月 '23
+238
在0个频道中
Get PRO
一月 '23
+185
在0个频道中
Get PRO
十二月 '22
+201
在0个频道中
Get PRO
十一月 '22
+133
在0个频道中
Get PRO
十月 '22
+178
在0个频道中
Get PRO
九月 '22
+214
在0个频道中
Get PRO
八月 '22
+123
在0个频道中
Get PRO
七月 '22
+133
在0个频道中
Get PRO
六月 '22
+130
在0个频道中
Get PRO
五月 '22
+165
在0个频道中
Get PRO
四月 '22
+214
在0个频道中
Get PRO
三月 '22
+320
在0个频道中
Get PRO
二月 '22
+224
在0个频道中
Get PRO
一月 '22
+609
在0个频道中
Get PRO
十二月 '21
+197
在0个频道中
Get PRO
十一月 '21
+252
在0个频道中
Get PRO
十月 '21
+140
在0个频道中
Get PRO
九月 '21
+146
在0个频道中
Get PRO
八月 '21
+190
在0个频道中
Get PRO
七月 '21
+197
在0个频道中
Get PRO
六月 '21
+327
在0个频道中
Get PRO
五月 '21
+440
在0个频道中
Get PRO
四月 '21
+161
在0个频道中
Get PRO
三月 '21
+108
在0个频道中
Get PRO
二月 '21
+196
在0个频道中
Get PRO
一月 '21
+1 242
在0个频道中
| 日期 | 订阅者增长 | 提及 | 频道 | |
| 16 九月 | 0 | |||
| 15 九月 | +2 | |||
| 14 九月 | +4 | |||
| 13 九月 | +5 | |||
| 12 九月 | +2 | |||
| 11 九月 | +2 | |||
| 10 九月 | +2 | |||
| 09 九月 | 0 | |||
| 08 九月 | +1 | |||
| 07 九月 | 0 | |||
| 06 九月 | +4 | |||
| 05 九月 | +3 | |||
| 04 九月 | +1 | |||
| 03 九月 | +2 | |||
| 02 九月 | +2 | |||
| 01 九月 | +1 |
频道帖子
| 2 | ❓ أي عبارة صحيحة عن Overloading/Overriding؟
Which statement is true about overloading/overriding? | 324 |
| 3 | Choose your answer: | 348 |
| 4 | ❓ ما قيمة الحقل بعد إنشاء الكائن؟
What is the field value after object creation?class A { int v = 1; A(){ v *= 2; } }
A a = new A();
System.out.println(a.v); | 275 |
| 5 | Choose your answer: | 284 |
| 6 | ❓ ما مجموع التأثير في switch مع default؟
Total effect in switch with default?int x = 0;
int v = 3;
switch (v) {
case 1: x += 1; break;
case 2:
case 3: x += 3;
default: x += 5; break;
}
System.out.println(x); | 246 |
| 7 | Choose your answer: | 274 |
| 8 | ❓ ما طول الصف الثاني؟
What is the length of the second row?int[][] m = { {1,2}, {3,4,5} };
System.out.println(m[1].length); | 246 |
| 9 | Choose your answer: | 290 |
| 10 | ❓ ما ناتج بناء السلسلة داخل لوب؟
What does this string build print?String s = "a";
for (int i = 0; i < 3; i++) s += i;
System.out.println(s); | 261 |
| 11 | Choose your answer: | 292 |
| 12 | ❓ تأثير العامل الثلاثي مع الزيادات؟
Ternary with increments effect?int a = 1, b = 2;
int x = (a++ > 1) ? a : b++;
System.out.println(a + "," + b + "," + x); | 259 |
| 13 | Choose your answer: | 291 |
| 14 | ❓ ما ناتج حساب المضروب البسيط؟
What does this factorial-like loop print?int n = 3, r = 1;
for (int i = 1; i <= n; i++) r *= i;
System.out.println(r); | 270 |
| 15 | Choose your answer: | 330 |
| 16 | ❓ ما نتيجة البحث بعد الفرز؟
What is binarySearch result after sort?int[] a = {3, 1, 2};
java.util.Arrays.sort(a);
System.out.println(java.util.Arrays.binarySearch(a, 2)); | 317 |
| 17 | Choose your answer: | 340 |
| 18 | ❓ أي استدعاء يُفضَّل مع varargs؟
Which overload is chosen with varargs?static void m(int x) { System.out.print("exact"); }
static void m(int... x) { System.out.print("varargs"); }
m(5); | 299 |
| 19 | Choose your answer: | 332 |
| 20 | ❓ كيف يعمل fall-through عندما يطابق case 1؟
How does fall-through work here?int d = 1;
switch (d) {
case 0: d += 2;
default: d += 3;
case 1: d += 4;
}
System.out.println(d); | 315 |
