Java error “Value of local variable is not used”

后端 未结 7 1317
温柔的废话
温柔的废话 2020-12-06 18:00

I am really new to java (started learning 2 days ago). Sorry if this is a stupid question. I am trying to learn how to use rt.exec & similar methods so I tried to make a

7条回答
  •  长情又很酷
    2020-12-06 18:31

    Well, the error "The value of local variable p is not used.", Is not actually an error. It's your IDE (Eclipse), warning you that you aren't actually reading that variable, so you aren't receiving any input from it.

    And the other problem with your class is, you don't have a main method. Like this,

    public class main {
    public static void main(String[] args) {
    try {
    Runtime rt = Runtime.getRuntime() ;
    Process p = rt.exec("calc.exe") ;
    } catch(Exception exc){
    /*handle exception*/
    }
        }
    }
    

    And by the way, you should always start a class name with a captial letter. So public class main, should actually be public class Main

提交回复
热议问题