Java与C++函数参数传递比较

学好C++,为祖国四化做贡献。

简言之:Java都是值传递(pass-by-value),而C++中包括值传递(pass-by-value)和引用传递(pass-by-reference)。

先说Java,先做几点说明:

Java中,无非就是两种类型,即基本类型和从Object继承下来的对象类型,而对象类型又包括String这种一旦初始化就不可改变内容的类型和BufferString这种可以初始化后可

以改变内容的类型。

然后看一下代码示例:

 

java 代码
  1. package test;   
  2.   
  3. public class Test {   
  4.  public static void main(String args[]) {   
  5.   Integer interger1, interger2;   
  6.   int i, j;   
  7.   interger1 = new Integer(10);   
  8.   interger2 = new Integer(50);   
  9.   i = 5;   
  10.   j = 9;   
  11.   System.out.println("Before Swap, Interger1 is " + interger1);   
  12.   System.out.println("Before Swap, Interger2 is " + interger2);   
  13.   swap(interger1, interger2);   
  14.   System.out.println("After Swap Interger1 is " + interger1);   
  15.   System.out.println("After Swap Interger2 is " + interger2);   
  16.   System.out.println("Before Swap i is " + i);   
  17.   System.out.println("Before Swap j is " + j);   
  18.   swap(i, j);   
  19.   System.out.println("After Swap i is " + i);   
  20.   System.out.println("After Swap j is " + j);   
  21.   
  22.   StringBuffer sb = new StringBuffer("I am StringBuffer");   
  23.   System.out.println("Before change, sb is <" + sb + ">");   
  24.   change(sb);   
  25.   System.out.println("After change sb is <" + sb + ">");   
  26.  }   
  27.   
  28.  public static void swap(Integer ia, Integer ib) {   
  29.   Integer temp = ia;   
  30.   ia = ib;   
  31.   ib = temp;   
  32.  }   
  33.   
  34.  public static void swap(int li, int lj) {   
  35.   int temp = li;   
  36.   li = lj;   
  37.   lj = temp;   
  38.  }   
  39.   
  40.  public static void change(StringBuffer ia) {   
  41.   ia.append(", but my content can be changed");   
  42.   //ia = new StringBuffer(",but my content can be changed");   
  43.  }   
  44. }   
  45.   

输出:

Before Swap, Interger1 is 10
Before Swap, Interger2 is 50
After Swap Interger1 is 10
After Swap Interger2 is 50
Before Swap i is 5
Before Swap j is 9
After Swap i is 5
After Swap j is 9
Before change, sb is <I am StringBuffer>
After change sb is <I am StringBuffer, but my content can be changed>

这很好解释,对于基本类型诸如int,传递进去的是存放int值的“内存单元”的一个copy,所以函数swap里面的int和外面的int根本就不是一个东西,当然不能反射出去影响外面

的int。而对于对象类型,我们同样可以这样认为,传递进去的是存放对象类型的指针的“内存单元”一个copy(虽然Java里面没有指针的概念,但这并不妨碍我们理解)。这样,

在swap函数里面,对其指针本身的值做任何操作当然不会影响外面的Integer,因为interger1和interger2的“内存单元”里面的值是不变的,其指向的对象类型也是没有变的。

然后这里需要说明一个问题,就是StringBuffer这种类型的对象了。因为其内容是可以改变的,所以change函数里面的“指针”通过类似“*”的操作,改变了StringBuffer对象的

本身,就显而易见了。(StringBuffer对象本身只有一个副本)

然后说C++了,里面的基本类型的诸如int的值传递大家都了然于胸,就不在这里废话了。然后另一种值传递可以称为指针引用传递(pass-by-value argument of pointer)(这个类

似上文说的Java中的对象类型的值传递),可以通过*操作,改变指针指向的值。示例程序如下,一看便知:

cpp 代码
  1. #include<iostream.h>   
  2.   
  3. int main(){   
  4.  void test(int*, const char*);   
  5.  int i = 1;   
  6.  int* iptr = &i;   
  7.  cout<<"Before pass-by-value:"<<"\n\n";   
  8.  cout<<"i = "<<i<<", It's value of i"<<endl;   
  9.  cout<<"&i = "<<&i<<", It's address of i and value of iptr"<<endl;   
  10.  cout<<"*iptr = "<<*iptr<<", It's value of i"<<endl;   
  11.  cout<<"iptr = "<<iptr<<", It's value of iptr and address of i"<<endl;   
  12.  cout<<"&iptr = "<<&iptr<<", It's address of iptr-self"<<"\n\n";   
  13.     
  14.  test(iptr, "pass-by-iptr");   
  15.   
  16.  test(&i, "pass-by-&i");   
  17.   
  18.  return 0;   
  19. }   
  20.   
  21. void test(int* iiptr, const char* string){   
  22.  cout<<"When pass-by-value and :"<<"\n\n";   
  23.  cout<<"*iiptr = "<<*iiptr<<", It's value of i"<<endl;   
  24.  cout<<"iiptr = "<<iiptr<<", It's value of iiptr and address of i"<<endl;   
  25.  cout<<"&iiptr = "<<&iiptr<<", It's address of iiptr-self, different with iptr!"<<"\n\n";   
  26. }   
  27.   

输出:

Before pass-by-value:

i = 1, It's value of i
&i = 0x0012FF7C, It's address of i and value of iptr
*iptr = 1, It's value of i
iptr = 0x0012FF7C, It's value of iptr and address of i
&iptr = 0x0012FF78, It's address of iptr-self

When pass-by-value and :

*iiptr = 1, It's value of i
iiptr = 0x0012FF7C, It's value of iiptr and address of i
&iiptr = 0x0012FF24, It's address of iiptr-self, different with iptr!

When pass-by-value and :

*iiptr = 1, It's value of i
iiptr = 0x0012FF7C, It's value of iiptr and address of i
&iiptr = 0x0012FF24, It's address of iiptr-self, different with iptr!

在C++里面的第二种就是引用传递了(pass-by-reference)。见如下示例:

cpp 代码
  1. #include<iostream.h>   
  2. int main(){   
  3.  void test(int&, const char*);   
  4.  int i = 1;   
  5.  int &iref = i;   
  6.  cout<<"Before pass-by-reference:"<<"\n\n";   
  7.  cout<<"i = "<<i<<", It's value of i"<<endl;   
  8.  cout<<"&i = "<<&i<<", It's address of i and value of iptr"<<endl;   
  9.  cout<<"iref = "<<iref<<", It's value of iref and value of i"<<endl;   
  10.  cout<<"&iref = "<<&iref<<", It's address of iref-self, the same as i!"<<"\n\n";   
  11.     
  12.  test(iref, "pass-by-iref");   
  13.   
  14.  test(i, "pass-by-i");   
  15.   
  16.  return 0;   
  17. }   
  18.   
  19. void test(int &iiref, const char* string){   
  20.  cout<<"When pass-by-reference and "<<string<<"\n\n";   
  21.  cout<<"iiref = "<<iiref<<", It's value of iiref and value of i"<<endl;   
  22.  cout<<"&iiref = "<<&iiref<<", It's address of iiref-self, the same as i!"<<"\n\n";   
  23. }   
  24.   

输出:

Before pass-by-reference:

i = 1, It's value of i
&i = 0x0012FF7C, It's address of i and value of iptr
iref = 1, It's value of iref and value of i
&iref = 0x0012FF7C, It's address of iref-self, the same as i!

When pass-by-reference and pass-by-iref

iiref = 1, It's value of iiref and value of i
&iiref = 0x0012FF7C, It's address of iiref-self, the same as i!

When pass-by-reference and pass-by-i

iiref = 1, It's value of iiref and value of i
&iiref = 0x0012FF7C, It's address of iiref-self, the same as i!

这里的引用(reference)说的明白一些,就是被传递参数的一个别名,或者更直接的理解就是被传递参数自己了,只是名字不同而已。那么既然自己都被pass过去了,那当然可以在function里面为所欲为了。赫赫。

renki_z对本文亦有贡献

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值