欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

5.变量

程序员文章站 2024-03-23 11:18:34
...

变量

数据类型 变量名 = 值

public class demo5 {
    public static void main(String[] args) {
        //int a,b,c;
        int a = 1, b = 2, c = 3;//程序可读性
        String name = "Deer";
        char x = 'X';
        double pi = 3.14;

    }
}

  1. 类变量——static
  2. 实例变量
  3. 局部变量——必须声明和初始化值
public class Demo6 {

    //类变量  static
    static double salary = 2500;


    //属性

    //实例变量:从属于对象;如果不自行初始化,这个类型的默认值
    //数值类型   0  0.0   u00000
    //bool默认false
    //其余的都为null
    String name;
    int age;

    //main方法
    public static void main(String[] args) {
        //局部变量:必须声明和初始化值   作用在方法内
        int i = 10;
        System.out.println(i);

        //变量类型    变量名字 =  new Demo6();
        Demo6 demo6 = new Demo6();
        System.out.println(demo6.age);
        System.out.println(demo6.name);

        //类变量  static

    }

    //其他方法
    public void add() {

    }
}

常量

初始化后不能再改变的值

final 常量名 = 值;

【注】:常量名一般使用大写字符

public class Demo7 {

    //修饰符,不存在先后顺序
    final static double PI = 3.14;


    public static void main(String[] args) {
        System.out.println(PI);
    }
}