java@runoob

在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

} 

}


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值