ch
Feedback
جافا Java

جافا Java

前往频道在 Telegram

ليس عيبًا ألا تعرف شيئًا، ولكن العيب انك لا تريد أن تتعلم

显示更多
6 342
订阅者
+324 小时
-97
-4730
吸引订阅者
六月 '26
六月 '26
+16
在0个频道中
五月 '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个频道中
日期
订阅者增长
提及
频道
07 六月+4
06 六月+4
05 六月+1
04 六月+1
03 六月+2
02 六月+1
01 六月+3
频道帖子
Choose your answer:
Anonymous voting

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: Vie
📢 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