我正在自学java。我目前正在研究类和java。我写了这段代码,但是我收到了这个错误:
错误:发生了JNI错误,请检查您的安装并重试 线程" main"中的例外情况C:\ Users \ Wiliez \ AppData \ Local \ NetBeans \ Cache \ 8.2 \ executor-snippets \ run.xml:53:Java返回:1 BUILD FAILED(总时间:0秒)
我不明白为什么我无法编译。我究竟做错了什么? 这是我的代码:
public class RectArea {
public static void main(String[]args)
{ int myArea = new areaFormula(6,8).getArea();
System.out.println(myArea);
}
}
public class areaFormula {
public int legnth, width;
public areaFormula(int leg, int wid)
{
legnth = leg;
width = wid;
}
public int getArea()
{
return legnth*width;
}
}