方法内定义的变量没有初始值,必须要进行初始化。 类中定义的变量可以不需要赋予初始值,默认初始值为0。

This commit is contained in:
LingZhaoHui 2021-05-05 19:34:44 +08:00
parent 1a03be5572
commit b917195923

View File

@ -0,0 +1,18 @@
package com.zeekling.integer;
public class IntegerTest {
public static void main(String[] args) {
int a = 10;
// 方法内定义的变量没有初始值必须要进行初始化 类中定义的变量可以不需要赋予初始值默认初始值为0
int b = 0;
int c;
if (a > 50) {
b = 9;
}
c = b + a;
System.out.println("c=" + c);
}
}