对象变量与Java中的类变量

前端之家收集整理的这篇文章主要介绍了对象变量与Java中的类变量前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在学习 Java,我不明白对象变量和类变量之间的区别.我所知道的是,为了使它成为一个Class变量,您必须首先使用静态语句声明它.
谢谢!

解决方法

在Java(通常在OOP中)对象有两种字段(变量).

实例变量(或对象变量)是属于对象的特定实例的字段.

静态变量(或类变量)对同一个类的所有实例都是常见的.

这里有一个例子:

public class Foobar{
    static int counter = 0 ; //static variable..all instances of Foobar will share the same counter
    public int id; //instance variable. Each instance has its own id
    public Foobar(){
        this.id = counter++;
    }
}

用法

Foobar obj1 = new Foobar();
Foobar obj2 = new Foobar();
System.out.println("obj1 id : " + obj1.id + " obj2.id "= obj2.id + " id count " + Foobar.counter);
原文链接:https://www.f2er.com/java/125392.html

猜你在找的Java相关文章