Skip to content

fix 翻译漏字 #408

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 22 commits into from
Mar 16, 2020
Merged
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
400e96d
忽路->忽略
funnycoding Feb 27, 2020
a653a63
修复跳转链接错误
funnycoding Feb 28, 2020
d06336c
Merge branch 'master' of github.com:LingCoder/OnJava8
funnycoding Feb 29, 2020
8729f5c
fix Class.getInterface() -> Class.getInterfaces()
funnycoding Mar 3, 2020
cfa16be
否者 -> 否则
funnycoding Mar 3, 2020
32b5603
编译期 -> 编译器 ,原文"the compiler will only allow you to say that the super…
funnycoding Mar 3, 2020
93189c9
ierator -> iterator
funnycoding Mar 4, 2020
ae53827
Merge branch 'master' of github.com:LingCoder/OnJava8
funnycoding Mar 4, 2020
ece6f5d
nextint -> nextInt
funnycoding Mar 4, 2020
441f714
Merge branch 'master' of github.com:LingCoder/OnJava8
funnycoding Mar 4, 2020
becb82d
Merge branch 'master' of github.com:LingCoder/OnJava8
funnycoding Mar 9, 2020
beeb36a
fix 这句翻译第一反应没太看懂,结合原文和下面的例子优化了一下翻译
funnycoding Mar 9, 2020
e2b674d
fix ojb -> obj
funnycoding Mar 13, 2020
500eb3a
Merge branch 'master' of github.com:LingCoder/OnJava8
funnycoding Mar 13, 2020
8ae607d
fix example code
funnycoding Mar 13, 2020
f9a4d08
Merge branch 'master' of github.com:LingCoder/OnJava8
funnycoding Mar 13, 2020
8b723e6
Merge branch 'master' of github.com:LingCoder/OnJava8
funnycoding Mar 14, 2020
3b2c9da
add package&class name
funnycoding Mar 14, 2020
31b4024
fix 错别字
funnycoding Mar 14, 2020
f35abdd
Merge branch 'master' of github.com:LingCoder/OnJava8
funnycoding Mar 14, 2020
ab66e30
Merge branch 'master' of github.com:LingCoder/OnJava8
funnycoding Mar 15, 2020
b193b9b
fix 错别字
funnycoding Mar 15, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/book/20-Generics.md
Original file line number Diff line number Diff line change
Expand Up @@ -3584,7 +3584,7 @@ public class UseList<W, T> {
}
```

因为擦除,所以重载方法产生了的类型签名
因为擦除,所以重载方法产生了相同的类型签名

因而,当擦除后的参数不能产生唯一的参数列表时,你必须提供不同的方法名:

Expand Down