Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit dbaa3e4

Browse files
authored
Update 00_Introduction.md
1 parent 61995e7 commit dbaa3e4

File tree

1 file changed

+19
-16
lines changed

1 file changed

+19
-16
lines changed

‎ch01/00_Introduction.md‎

Lines changed: 19 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
《《《 [返回首页](../README.md) <br/>
22
《《《 [上一节](../Preface.md)
33

4-
54
## 第一章(简介)
65

76
`Java` 最新版本中现在对泛型和集合与许多其他新功能有良好的支持,包括装箱和拆箱,新的循环形式,以及接受可变数量参数的函数。我们从一个例子开始说明了这
@@ -10,10 +9,12 @@
109
因此作为我们的座右铭,让我们做一些简单求和:把三个数字一个列表并将它们加在一起。 下面是如何在 `Java` 中使用泛型:
1110

1211
```java
13-
List<Integer> ints = Arrays.asList(1,2,3);
14-
int s = 0;
15-
for (int n : ints) { s += n; }
16-
assert s == 6;
12+
List<Integer> ints = Arrays.asList(1,2,3);
13+
int s = 0;
14+
for (int n : ints) {
15+
s += n;
16+
}
17+
assert s == 6;
1718
```
1819

1920
不需要太多的解释你就可以读懂代码,但是让我们来看看关键特征。接口列表和类数组是集合框架的一部分(都可以在 `java.util` 包中找到)。类型 `List` 现在是
@@ -25,15 +26,15 @@
2526
下面是在泛型之前 `Java` 中相同作用的代码:
2627

2728
```java
28-
List ints = Arrays.asList( new Integer[] {
29-
new Integer(1), new Integer(2), new Integer(3)
30-
} );
31-
int s = 0;
32-
for (Iterator it = ints.iterator(); it.hasNext(); ) {
29+
List ints = Arrays.asList( new Integer[] {
30+
new Integer(1), new Integer(2), new Integer(3)
31+
} );
32+
int s = 0;
33+
for (Iterator it = ints.iterator(); it.hasNext(); ) {
3334
int n = ((Integer)it.next()).intValue();
3435
s += n;
35-
}
36-
assert s == 6;
36+
}
37+
assert s == 6;
3738
```
3839

3940
阅读这段代码并不是那么容易。 没有泛型,就没有办法指出类型声明你打算在列表中存储什么样的元素,所以而不是写 `List<Integer>`,你写 `List`。 现在是
@@ -44,10 +45,12 @@
4445
顺便说一句,下面是如何在泛型之前用 `Java` 中的数组做同样的事情:
4546

4647
```java
47-
int[] ints = new int[] { 1,2,3 };
48-
int s = 0;
49-
for (int i = 0; i < ints.length; i++) { s += ints[i]; }
50-
assert s == 6;
48+
int[] ints = new int[] { 1,2,3 };
49+
int s = 0;
50+
for (int i = 0; i < ints.length; i++) {
51+
s += ints[i];
52+
}
53+
assert s == 6;
5154
```
5255

5356
这比使用泛型和集合的相应代码略长,可以说是不太可读,而且肯定不够灵活。 集合让你轻松增大或缩小集合的大小,或在切换到适当的不同的表示形式时,如链表或散

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /