gpt4 book ai didi

java - java中静态变量和非静态变量一起添加

转载 作者:行者123 更新时间:2023-12-01 08:16:01 25 4
gpt4 key购买 nike

在java中我们可以将静态变量和非静态变量一起添加吗?例如,

class Evolve{
static int i = 1;
static int j = 2;
int x = 3;
static int y = 6;

public static void main(String args[]){
System.out.println(i + j);
System.out.println(x + i);
System.out.println(i + y);
System.out.println(x + j);
}
}

谢谢

最佳答案

直到您初始化 Evolve 实例并将其引用为

this.i

或者像这样

Evolve evolve = new Evolve();
System.out.println(evolve.i + Evolve.j);

关于java - java中静态变量和非静态变量一起添加,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13300624/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com