未知的Java错误 - 以红色加下划线的分号

时间:2016-03-22 23:55:12

标签: java

我是一名参加大学课程的初学者。我不知道为什么会收到这个错误。你能帮帮我吗?

public class Arithmetic {
     public static void main(String[] args) {
        //TODO: Auto-generated  method stub
          }
          int number1 = 5;
          int number2 = 8;
          int number3 = 0;//error
          number3 = number1 + number2;
        }

enter image description here

2 个答案:

答案 0 :(得分:2)

将所有代码放入main方法

public static void main (String args[]) {

    int number1 = 10;
    // etc
}

答案 1 :(得分:1)

将第一个}一直向下移动。
number3 = number1 + number2需要使用main方法。