韩顺平 java笔记 第8讲 this 类变量 第9讲 类方法

Posted wangxiaoli

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了韩顺平 java笔记 第8讲 this 类变量 第9讲 类方法相关的知识,希望对你有一定的参考价值。

1.类变量 即static

  public class Demo{

    public static void main(String[] args){

      Child ch1 = new Child(3,"妞妞");

      ch1.joinGame();

      Child ch2 = new Child(4,"小小");

      ch2.joinGame();   

      Child ch3 = new Child(5,"大大");

      ch3.joinGame();

      System.out.println("共有="+Child.total);

    }

  }

  class Child{

    int age;

    String name;

    static int total=0;

    public Child(int age,String name){

      this.age=age;

      this.name=name;

    }

    public void joinGame(){

      total++;

    }

  }

 

2.类方法

   public  class Demo{

    public static void main(String[] args){

      Stu stu1 = new Stu(29,"aa",340);

      Stu stu2 = new Stu(29,"bb",240);

      System.out.println(Stu.getTotalFee());

    }

  }

  class Stu{

    int age;

    String name;

    int fee;

    static int totalFee;

    public Stu(int age,String name,int fee){

      this.age = age;

      this.name = name;

      totalFee+=fee;

    }

    public static int getTotalFee(){//这是一个静态方法

      return totalFee;

      age ++;//错的,

    }

  }

***static静态方法可以访问static静态变量,不能访问非静态变量,非静态方法可以访问静态和非静态变量。

 

以上是关于韩顺平 java笔记 第8讲 this 类变量 第9讲 类方法的主要内容,如果未能解决你的问题,请参考以下文章

韩顺平 java笔记 第43-46讲 io编程

韩顺平 java笔记 第9讲 第10讲 第11讲 第12讲 抽象 封装 继承 多态 方法重载 方法重写

韩顺平循序渐进学java 第13讲 抽象类.接口

韩顺平 java笔记 第20讲 二进制 位运算 移位运算

韩顺平循序渐进学java 第05.06.07讲 类.对象

韩顺平循序渐进学java 第12讲 多态