Eclipse 中方法的图标有何含义?
可能的重复:
Eclipse 中的图标是什么意思?
在“Package Explorer”中在 Eclipse IDE 中,我可以单击 Java 类并列出其所有方法。这些方法在名称前显示有几个不同的图标,包括绿色圆圈或红色正方形。
这些图标是什么意思?有没有一个网页可以解释它们?
Possible Duplicate:
What do the icons in Eclipse mean?
In the "Package Explorer" in the Eclipse IDE, I can click on a Java class and list all its methods. The methods are displayed with a few different icons before the name, including a green circle or a red square.
What do these icons mean? Is there a webpage that explains them?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
绿色圆圈表示公共方法
红色方块表示私有方法
黄色菱形表示受保护方法
蓝色三角形表示默认(包可见)方法
此页面概述了 Eclipse JDT 中使用的所有图标。 此页面解释了 Java 术语中不同访问级别的含义,如果你对此不熟悉的话。
Green circle indicates a public method
Red square indicates a private method
Yellow diamond indicates a protected method
Blue triangle indicates default (package visible) method
This page gives an overview of all the icons used in Eclipse JDT. This page explains what the different access levels mean in Java terms, in case you aren't familiar with that.
带有红色方块的方法是私有的,带有绿色圆圈的方法是公共的。
http://download.oracle.com/javase/tutorial/java/javaOO /accesscontrol.html
Methods with the red square are private and the ones with the green circle are public.
http://download.oracle.com/javase/tutorial/java/javaOO/accesscontrol.html
绿色圆圈 - 通常是公共方法。
红方块 - 私有方法。
黄色保护
green circle - Usually a public method.
red square - private method.
yellow - protected