免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1649 | 回复: 0
打印 上一主题 下一主题

Java的传值方式 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2009-12-08 10:05 |只看该作者 |倒序浏览
一直以来 我一直都在想:Java到底是传值还是传引用
想不清楚,与舍友讨论结果是简单类型传值,object类型传引用,咋看上去好像没错,其实我觉得所有的类型都是传值,而没有传引用

测试代码如下:

/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package javavaule;
/**
*
* @author duxingxia
*/
public class Main {
    /**
     * @param args the command line arguments
     */
    public static void main(String[] args) {
        // TODO code application logic here
        /*
         * test 1:Methos can't modify numeric paramenters
        */
        System.out.println("Testing tripleVaule:");
        double percent = 10;
        System.out.println("Before: percent="+percent);
        tripleValue(percent);
        System.out.println("After: percent="+percent);
        /*
         * test 2:Methods can change the state of object paramenters
        */
        System.out.println("\nTesting tripleSalary:");
        Employee harry = new Employee("Harry",50000);
        System.out.println("Before: salary="+harry.getSalary());
        tripleSalary(harry);
        System.out.println("After: salary="+harry.getSalary());
        /*
         * test 3:Methods can't attach new objects to object paramenters
        */
        System.out.println("\nTesting swap:");
        Employee a = new Employee("Alice",70000);
        Employee b = new Employee("Bod",60000);
        System.out.println("Before: a ="+a.getName());
        System.out.println("Before: b ="+b.getName());
        swap(a,b);
        System.out.println("After: a ="+a.getName());
        System.out.println("After: b ="+b.getName());
    }
    public static void tripleValue(double x)//doesn't work
    {
        x = 3 * x;
        System.out.println("End of Method: x=" + x);
    }
    public static void tripleSalary(Employee x)//works
    {
        x.raiseSalary(200);
        System.out.println("End of method: salary="+x.getSalary());
    }
    public static void swap(Employee a,Employee b)
    {
        Employee temp = a ;
        a = b;
        b = temp;
        System.out.println("End of method: a="+a.getName());
        System.out.println("End of method: b="+b.getName());
    }
}
class Employee
{
    public Employee(String n,double s)
    {
        name = n;
        salary = s;
    }
    public String getName()
    {
        return name;
    }
    public double getSalary()
    {
        return salary;
    }
    public void raiseSalary(double byPercent)
    {
        double raise = salary * byPercent / 100;
        salary += raise;
        return;
    }
    private String name;
    private double salary;
}
输出地截图如下:





本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u3/98826/showart_2113665.html
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP