静态变量static和非静态变量

静态变量static和非静态变量,第1张

静态变量static和非静态变量
package com.OOP;

public class Student {
     private static int age;
     public  double score;

     public static void main(String[] args) {
          Student xiaoma = new Student();
          System.out.println(Student.age);//静态变量与类同时存在,所以建议用类来调用
          //System.out.println(Student.score);
          // 非静态变量只有使用时才会分配空间所以不能用类调用
          System.out.println(xiaoma.score);//此时使用了score,就分配了空间;

     }
} 

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/4670854.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-06
下一篇 2022-11-06

发表评论

登录后才能评论

评论列表(0条)

保存