IntelliJ IDEA 中 右键运行时没有run
程序员文章站
2022-05-08 21:10:26
...
public class CustomerTest {
public static void main(~~String[] args~~ ){
//创建Customer对象
Customer c1 = new Customer();
c1.name = "zhangsan";
//c1购物
c1.shopping();
//再创建Customer对象
Customer c2 = new Customer();
c2.name = "lisi";
//c2购物
c2.shopping();
}
}
网上针对module或JDK部分有相应解释,还有一个原因是main方法里没有写参数,没写(String[] args)。很低级的错误,我自己犯了两次。引以为戒。
上一篇: Intellij IDEA 内存设置
下一篇: !important