- A class loader that loads classes from {@code .jar} and {@code .apk} files
- containing a {@code classes.dex} entry. This can be used to execute code not
- installed as part of an application.
类似于这种 {@code .jar} 里面的{}表示什么意思?
类似于这种 {@code .jar} 里面的{}表示什么意思?
1
SoloCompany Nov 25, 2015
没记得有这么一个 tag
如果有的话,应该是等价于 {@code xxx} === <code>xxx</code> |
2
taomk Dec 9, 2015
@SoloCompany
有这么一个 tag ,{@code xxx}在 JavaDoc 里显示效果是等价于<code>xxx</code> 在 JDK 源码里,随处可见{@code xxx}这种 tag , 另: 附一个 SOF 上的解答: http://stackoverflow.com/questions/7066409/what-is-the-difference-between-code-memberdata-and-codememberdata-code-in |