جافا Java
前往频道在 Telegram
6 248
订阅者
-324 小时
-67 天
-4830 天
数据加载中...
相似频道
标签云
进出提及
---
---
---
---
---
---
吸引订阅者
七月 '26
七月 '26
+32
在0个频道中
六月 '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个频道中
| 日期 | 订阅者增长 | 提及 | 频道 | |
| 23 七月 | +2 | |||
| 22 七月 | +1 | |||
| 21 七月 | 0 | |||
| 20 七月 | 0 | |||
| 19 七月 | +2 | |||
| 18 七月 | +1 | |||
| 17 七月 | +2 | |||
| 16 七月 | 0 | |||
| 15 七月 | +1 | |||
| 14 七月 | 0 | |||
| 13 七月 | +2 | |||
| 12 七月 | +3 | |||
| 11 七月 | +1 | |||
| 10 七月 | +1 | |||
| 09 七月 | +2 | |||
| 08 七月 | +1 | |||
| 07 七月 | +1 | |||
| 06 七月 | +6 | |||
| 05 七月 | +1 | |||
| 04 七月 | +2 | |||
| 03 七月 | 0 | |||
| 02 七月 | +2 | |||
| 01 七月 | +1 |
频道帖子
| 2 | ❓ تفضيل التحويلات في Overload
Overload preference (widening vs boxing vs varargs)static void m(long x){ System.out.print("long"); }
static void m(Integer x){ System.out.print("Integer"); }
static void m(int... x){ System.out.print("varargs"); }
m(5); | 50 |
| 3 | Choose your answer: | 101 |
| 4 | ❓ الاستثناءات المُتَحَقَّقة (Checked)
Checked exceptions handlingvoid read() throws java.io.IOException {}
void m(){ read(); } | 98 |
| 5 | Choose your answer: | 144 |
| 6 | ❓ التعامل مع الاستثناءات في finally
Try-catch-finally ordertry {
int x = 1 / 0;
System.out.print("A");
} catch (ArithmeticException e) {
System.out.print("B");
} finally {
System.out.print("C");
} | 130 |
| 7 | Choose your answer: | 161 |
| 8 | ❓ مستوى الوصول عند إعادة التعريف
Access level when overriding | 140 |
| 9 | Choose your answer: | 201 |
| 10 | ❓ الفرق بين abstract و interface
Abstract class vs interface | 167 |
| 11 | Choose your answer: | 216 |
| 12 | ❓ الوراثة مع مُنشئ أب مُعَلَّم
Inheritance with parameterized base constructorclass Base { Base(int x) {} }
class Child extends Base { } | 193 |
| 13 | Choose your answer: | 243 |
| 14 | ❓ ماذا يطبع جمع عناصر ArrayList؟
What does this ArrayList code print?import java.util.*;
List<Integer> xs = new ArrayList<>();
xs.add(1);
xs.add(2);
System.out.println(xs.get(0) + xs.get(1)); | 228 |
| 15 | Choose your answer: | 227 |
| 16 | ❓ أي عبارة صحيحة عن String و StringBuilder؟
Which is true about String vs StringBuilder? | 213 |
| 17 | Choose your answer: | 249 |
| 18 | ❓ equals مقابل == مع السلاسل
equals vs == with StringsString s1 = new String("java");
String s2 = new String("java");
System.out.println(s1.equals(s2) + "," + (s1 == s2)); | 232 |
| 19 | Choose your answer: | 269 |
| 20 | ❓ instanceof مع الوراثة
instanceof with inheritanceclass A {}
class B extends A {}
A x = new A();
System.out.println(x instanceof B); | 247 |
