1. 数组传递参数
    1. public static void printArray(int[] array) {
    2. for (int i = 0; i < array.length; i++) {
    3. System.out.println(array[i]);
    4. }

    2.类名称 对象名称 = new 类名称(); {

    方法就是若干语句的功能 ,任何数据类型都能作为方法的参数或者返回值

    格式:(创建方法格式:修饰符 返回值类 型 方法名称 (参数类型 参数名称,…) {

    方法体 (可以是对象类型)

    return 返回值;)

    }

    }

    1. public class phone { 类的 定义
    2. //成员变量(属性) 数据类型 属性名
    3. //成员方法(行为) public void eat() {
    4. }
    5. 定义类:就是定义类的成员,包括成员变量和成员方法。
    6. 成员变量:的以前定义变量几乎一样,只不过位置发生改变。在类中,方法外
    7. 成员方法:的以前定义方法几乎是一样的,只不过把static去掉。

    构造方法:

    1. public Student( String name, int age) {
      this.name = name;
      this.age = age;
      }

    创建一个类,
    创建一个包,使用对象调用类。
    public static void main(String[] args) {
    Class one = new Class();
    one.name = ??
    one.showName = ??

    }