我无法在网上的其他任何地方找到如何做到这一点,但我确信这很容易做到。不过,我主要是自学成才,我想开始学习正确地记录我的代码。这个在 Eclipse 中弹出的“黄色框”,其中包含有关该方法的信息 - 我希望它在自定义对象上弹出。对于下面的示例,我有一个名为“System Properties”的自定义类和一个名为“getOs”的方法,但是当我悬停该选项时,没有出现任何信息。如何向我的对象添加信息?
最后是我的自定义对象代码...
public class SystemProperties {
private String os;
public SystemProperties() {
this.os = setOs();
}
private String setOs() {
String osName = System.getProperty("os.name");
if(osName.toLowerCase().contains("window"))
return "Windows";
else if(osName.toLowerCase().contains("mac"))
return "Mac";
else
return "Linux";
}
/**
* Method to grab the OS the user is running from
* @return String - the os
*/
public String getOs() {
return this.os;
}
}
提前感谢您的时间和知识。:)
编辑:当我导入自定义对象的项目时,它工作得很好。仅当我将自定义类的项目导出到 jar 文件然后使用它时,它才不起作用。我必须单击导出屏幕上的选项吗?