标签:http java ar sp on c html ef htm
学编程吧学java教程之main方法发布了,欢迎通过xuebiancheng8.com来访问
java中的main方法是程序执行的入口。如下图
public class Person{
public static void main(String args[ ]){
System.out.println("Hello");
}
}
上面就是main方法的用法,类型必须是public的 static的 void返回值 方法名也必须是main,参数args[]是数组 可以获得程序执行时的参数列表。
更多内容请通过xuebiancheng8.com来访问吧。
具体网址是
http://xuebiancheng8.com/play/goodgoodstudy_124_daydayup.html
标签:http java ar sp on c html ef htm
原文地址:http://www.cnblogs.com/xuebiancheng8/p/3974017.html