Eclipse 中方法的图标有何含义?

发布于 2024-09-28 02:15:57 字数 310 浏览 4 评论 0原文

可能的重复:
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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

゛清羽墨安 2024-10-05 02:15:58

green Circle绿色圆圈表示公共方法

red square红色方块表示私有方法

alt text黄色菱形表示受保护方法

alt text蓝色三角形表示默认(包可见)方法

此页面概述了 Eclipse JDT 中使用的所有图标。 此页面解释了 Java 术语中不同访问级别的含义,如果你对此不熟悉的话。

green circleGreen circle indicates a public method

red squareRed square indicates a private method

alt textYellow diamond indicates a protected method

alt textBlue 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.

咽泪装欢 2024-10-05 02:15:58

带有红色方块的方法是私有的,带有绿色圆圈的方法是公共的。

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

请远离我 2024-10-05 02:15:58

绿色圆圈 - 通常是公共方法。
红方块 - 私有方法。
黄色保护

green circle - Usually a public method.
red square - private method.
yellow - protected

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文