Open
Conversation
added 3 commits
October 22, 2017 21:53
shixinzhang
reviewed
Oct 24, 2017
java/注解浅析.md
Outdated
Contributor
There was a problem hiding this comment.
这个 “解答” 可以去掉,换成一句舒服点的过渡,比如“本篇文章我们将一起来解答这些问题。”
java/注解浅析.md
Outdated
删除多余的语句,增加遗漏的部分
RayCourant
reviewed
Oct 28, 2017
java/注解浅析.md
Outdated
There was a problem hiding this comment.
Override的作用准确来说应该是:
1.帮助检查是否正确的复写了父类中的已有方法(如果不小心拼写错误或者方法签名对不上被覆盖的方法,编辑器都会发出警告信息)
2.表示当前方法定义将覆盖超类的方法。
java/注解浅析.md
Outdated
There was a problem hiding this comment.
下面这个部分建议把代码放IDE中,把代码和相关信息截图出来比代码加文字直观些
java/注解浅析.md
Outdated
There was a problem hiding this comment.
建议把自定义注解的例子和注解处理相结合,形成一个完整使用环节,比较容易理解
Author
There was a problem hiding this comment.
这部分我将自定义的注解替换成了运行时处理注解部分定义的注解了,但是没有合并。
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
增加 Annotation 解析