gpt4 book ai didi

java - 找不到符号 : . getRuntime()

转载 作者:行者123 更新时间:2023-12-01 23:22:03 25 4
gpt4 key购买 nike

我在编译程序时遇到的问题是java无法识别“.getRuntime()”方法。下面是我的代码:

   import java.lang.*;
public class Temp
{
public static void main(String [] args)
{
Process p = new ProcessBuilder("cmd.exe").start();
p = new Runtime.getRuntime().exec("cmd /c start cmd");
} // main method
} // Temp class

这是错误消息:

    Temp.java:7: cannot find symbol
symbol : class getRuntime
location: class java.lang.Runtime
p = new Runtime.getRuntime().exec("cmd /c start cmd");
^

1 个错误

最佳答案

您无法创建运行时。简化删除

p = Runtime.getRuntime().exec("...");

运行时有一个私有(private)构造函数。但它有一个名为 getRuntime() 的静态单实例访问方法。 。 (这是一个单例)

关于java - 找不到符号 : . getRuntime(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20489305/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com