本帖最后由 塞肥肥塞牙人 于 2014-9-8 18:15 编辑
- class Demo
- {
- public static void main(String[] args){
- int x=3;
- show (x);
- System.out.println("x=" + x);
- }
- public static void show(int x){
- x=4
- }
- }
复制代码- class Demo
- {
- int x = 3;
- public static void main(String[] args){
- Demo d= new Demo();
- d.x=9;
- show(d);
- System.out.println(d.x);
- }
- public static void show(Demo d){
- d.x = 4;
- }
- }
复制代码 基本数据类型(第一段代码)与引用数据类型(第二段代码)的X分别是什么????
为什么???
|
|