1Java的变量
变量:可以改变的量
命名规则:
遵循标识符命名规则,尽量使用有意义的单词,一般首字母小写
例: 成绩:score 身高: height
汤姆的成绩 :score of Tom
int speed; boolean flag
2 java 的常量
常量:值不可以改变
定义常量,使用final关键字
习惯上上量都使用大写
package day07;
public class TestConstant {
public static void main(String[] args) {
final int APPLE_PRICE_PER_KM;//声明常量 苹果价格
int weightofApple;//声明常量 重量
double money;
APPLE_PRICE_PER_KM=3;
weightofApple=5;
money=APPLE_PRICE_PER_KM*weightofApple;//计算结果
System.out.println("买苹果需要花费"+money+"元");
System.out.println("亲爱的顾客,欢迎下次再来");
}
}