摘要:
今天学习了Java的数组 public class Numle { public static void main(String[] args) { int a[]= {5,6,8,9}; int b[]= new int [4]; System.out.println("b的数组长度:"+b.le 阅读全文
摘要:
今天学习了那个java循环结构,首先是那个while: public class Number { public static void main(String[] args) { int x=1; while(x<10) { System.out.print(x); x++; System.out 阅读全文
摘要:
前几天学习了Java的基础语法,包括类,对象,实例变量和方法。例如 public static void main (string[] args)其中public为访问修饰符,static为关键字,void为返回类型,main为方法,string[]string类,args字符串数组。对于类名每个单 阅读全文
摘要:
前几天听完课,自主查找资料设置了Java的环境变量,并且下载了eclipse,编写了第一个程序helloworld.java; 近几天又通过看黑马程序员视频学习了关键字。 Java语言明确区分大小写,要特别注意。 main方法是程序运行不可或缺的,main方法必须要用public和static来修饰 阅读全文