在java程序中,为什么不能创建 Runtime 类实例?而是用getRuntime方法来创建。 请高手解释一下 谢谢~!

 我来答
flyingFish211
2010-12-31 · TA获得超过2.1万个赞
知道大有可为答主
回答量:1.5万
采纳率:50%
帮助的人:1.1亿
展开全部
单例模式,你看看Runtime的源代码就可以了。
Runtime的构造函数是私有的,从程序角度也不允许你直接创建。
从深层次考虑,如果你的Runtime可以随你创立,那JAVA程序的安全性将会大为降低。

建议你多了解点单例模式。类似的还有Calendar.getInstance()

public class Runtime {
private static Runtime currentRuntime = new Runtime();

/**
* Returns the runtime object associated with the current Java application.
* Most of the methods of class <code>Runtime</code> are instance
* methods and must be invoked with respect to the current runtime object.
*
* @return the <code>Runtime</code> object associated with the current
* Java application.
*/
public static Runtime getRuntime() {
return currentRuntime;
}

/** Don't let anyone else instantiate this class */
private Runtime() {}
lunch313
2010-12-31 · TA获得超过1317个赞
知道小有建树答主
回答量:1152
采纳率:0%
帮助的人:707万
展开全部
改用try{ java.awt.Desktop.getDesktop().edit(new File(
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
hesper0
2010-12-31 · TA获得超过512个赞
知道小有建树答主
回答量:289
采纳率:0%
帮助的人:232万
展开全部
java.lang.Runtime是一个单例类,需要通过getRuntime()方法获得Runtime的实例,
关于单例建议你看下设计模式,就明白了。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式