1. public void sit(){} 不要分号啊  //叫空实现
2。while(true)  //叫空实现
        {   }
3. 虚函数在大括号后面要分号
   接口 里面需要分号如::public interfae My
{
    public void add(int x,int y);
}
class Dome implements My
{
    public void add(int x,int y)
    {
      System.out.println(""+(x+y));
     }
}