We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a9f4b2c commit 53b7464Copy full SHA for 53b7464
ch02/07_Wildcard_Capture.md
@@ -9,13 +9,13 @@
9
10
```java
11
public static void reverse(List<?> list);
12
- public static void <T> reverse(List<T> list);
+ public static <T> void reverse(List<T> list);
13
```
14
15
通配符签名稍短且更清晰,是类库中使用的签名。如果使用第二个签名,则很容易实现该方法:
16
17
18
- public static void <T> reverse(List<T> list) {
+ public static <T> void reverse(List<T> list) {
19
List<T> tmp = new ArrayList<T>(list);
20
for (int i = 0; i < list.size(); i++) {
21
list.set(i, tmp.get(list.size()-i-1));
0 commit comments