当前位置: 代码迷 >> J2SE >> 这个是什么状况
  详细解决方案

这个是什么状况

热度:56   发布时间:2016-04-23 20:40:15.0
这个是什么情况?
class test
{
public static Void main (String[] args)
{
System.out.print("hello world!");
}
}


编译出错,说是缺少返回语句。怎么回事?
------解决方案--------------------
Viod    v是小写的
------解决方案--------------------
public static Void main (String[] args)
                      void
  相关解决方案