主要方法DriverMortgageClass.java

时间:2016-03-17 22:41:48

标签: java main-method

我即将完成此程序,但它无法运行,因为它需要一个main方法。但是每当我输入它时,我都会收到错误代码非法启动表达式。有人可以在此代码段中指出main方法所属的位置吗?贝娄是我写的代码。我也被指示使用Javadoc实用工具,我仍然不确定它是什么以及如何使用它。我相信我使用java.util.doc

走在正确的轨道上



<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<input type="radio" name="dateRadio" value="I" class="Status">
<input type="radio" name="dateRadio" value="A" class="Status">
<br>
<input type="text" id="Date_Inactive"> inactive <br>
<input type="text" id="Date_Accepted"> accepted<br>
<input type="text" id="DNE">DNE
&#13;
&#13;
&#13;

1 个答案:

答案 0 :(得分:3)

  

它需要一个主要的方法

然后添加一个main方法和JavaDoc

/**
*  This is a JavaDoc. Describe the class here. 
*
**/
public class DriverMortgageClass
{


    // Other code...

    public static void main(String[] args) {
        new DriverMortgageClass().start();
    } 
}