在RUNOOB上学JAVA_变量类型
在runoob上看java课程,在这里记录,以作备忘。
在java中,所有的变量在使用之前必须声明。格式如下
type identifier [ = value][,identifier [= value] ...];
/*
格式说明:
type为Java数据类型
identifier是变量名
可以使用逗号隔开来声明多个同类型变量
比如以下是一些变量的声明实例
*/
int a,b,c; //声明三个int型整数: a,b,c;
int d = 3, e = 4, f = 5; //声明三个整数并赋予初值;
byte z = 22; //声明并初始化z
String s = "runoob"; // declare ant initialize the string s
Double pi = 3.14159; // declares a double-precision floating-point variable pi
Char x = 'x'; // Declare the value of the variable x as the character 'x'.
The variable type supported by the Java language are :
- Class variable: A variable that is independent of the method and is decorated with stati.
- Instance varialbe: Variables that are independent of the method, but without static modification
- Local variable: A variable in a method of a class.
// Instance of variable type
Public class Variable {
static int allClick = 0; // allClick is a class variable.
String str = "hello world"; // instance variable.
Public void method() {
int i = 0; // local variable
}
}