java中的变量
时间:2020-02-23 14:35:39 来源:igfitidea点击:
在本教程中,我们将看到变量,声明和类型的简介。
介绍
Variables
在Java中用于在执行程序时存储元素的值。
Java variables are nothing but memory location. It stores the values which can be manipulated by program. Variables in java are strongly typed hence they all must have a datatype followed by an identifier.
每个变量都具有定义变量内存的大小和布局的特定数据类型。
声明一个变量
我们可以声明如下变量:
data_type variable_name = value;
这是一个例子: