Java变量的分类与初始化
作者:Daren Lin 发布时间:[ 2017/6/28 10:36:58 ] 推荐标签:测试开发技术 Java
变量
Java语言里的变量分以下4类:
1. Instance Variables: (Non-Static Fields) 是类里非静态的field
2. Class Variables: (Static Fields) 类里静态的field
3. Local Variables: 局部变量
4. Parameters: 参数
两个术语要注意,分别是field和variable。field是指上面的1和2,是class拥有的。而不是field的变量叫variable,对应上面的3和4,或者说局部的都是variable。
命名
Java的文档中明确写了推荐的命名方式,这是为什么java的代码里命名基本都差不多。格式是用连续的有意义的单词,从第二个单词开始,首字母大写。比如: speed, currentGear
基本数据类型 Primitive Data Type
Java有8个基本数据类型
整数型 4个: byte, short, int, long
浮点 2个: float, double
字符 1个: char
布尔 1个: boolean
他们的默认初始值如下:
默认值 Default Value
关于没有初始化的变量的默认的值,c/c++是不会帮你设置的,而java不同,官方文档描述的很清楚:
The eight primitive data types are: byte, short, int, long, float, double, boolean, and char. The java.lang.String class represents character strings. The compiler will assign a reasonable default value for fields of the above types; for local variables, a default value is never assigned. A literal is the source code representation of a fixed value. An array is a container object that holds a fixed number of values of a single type. The length of an array is established when the array is created. After creation, its length is fixed.
是对于Field来说,自动设成默认值,比如int设成0,object设成null。而对于Variable来说,不会自动设置,如果没有初始化的编译器会报错。
相关推荐
更新发布
功能测试和接口测试的区别
2023/3/23 14:23:39如何写好测试用例文档
2023/3/22 16:17:39常用的选择回归测试的方式有哪些?
2022/6/14 16:14:27测试流程中需要重点把关几个过程?
2021/10/18 15:37:44性能测试的七种方法
2021/9/17 15:19:29全链路压测优化思路
2021/9/14 15:42:25性能测试流程浅谈
2021/5/28 17:25:47常见的APP性能测试指标
2021/5/8 17:01:11