* 传递的若是基于基本类型的JAVA数据类型, 都是传值.
如 8 种基本数据类型 int, float, double, long, char, byte, short, boolean 分别对应 Integer, Float, Double, Long, String, Byte, Short, Boolean.
此外,数组也是传值,和C/C++中不一样(验证了 byte 数组)
* 传递的若是普通类的对象, 则是传引用.
测试代码: