由swap引发的关于按值传递和引用传递的思考与总结
函数的参数传递定义:在调用一个函数时,将实参传递给形参。
C++中函数的参数传递有按值传递、地址传递和引用传递3种方式。注意:地址也是一种值,按值传递和按地址传递都是单向的值传递方式,即形参都不会回传给实参。但是由于地址的特殊性,地址传递可以间接地改变实参的值,所以分开讨论。
一、按值传递
函数本身不对实参进行操作。
#include<iostream>
using namespace std;
void swap(int,int);//函数声明 void main() { int a=,b=; swap(a,b);//调用时,形参x、y重新申请了空间,把a、b值拷贝到形参,不对实参产生影响 cout<<"a = "<<a<<",b = "<<b<<endl; } void swap(int x,int y)//函数定义 { int temp = x; x = y; y = temp; } 执行结果如下:
a = ,b =
二、地址传递
所谓地址传递,是指在函数定义时将形参生命成指针,这样调用函数时就需要指定地址形式的实参。
#include<iostream>
using namespace std;
void swap(int *,int *);//函数声明 void main() { int a=,b=; swap(&a,&b);//swap中不是交换了x和y的值,而是交换了两个指针指向的两个地址处的值;因为同一地址的数据值是相同的,从而间接地达到了回传参数的目的 cout<<"a = "<<a<<",b = "<<b<<endl; } void swap(int *x,int *y)//函数定义 { int temp = *x;//"*"符号表示取指针指向的值 *x = *y; *y = temp; } 执行结果如下:
a = ,b =
三、引用传递
c++中变量名对应着内存的存储位置,可以使用一个特定的内存地址访问到它,引用则引入了变量的另一个名字(别名),它和这个变量有同一内存地址,对应用的操作,也就是对被它引用的变量的操作。
#include<iostream>
using namespace std;
void swap(int &,int &);//函数声明 void main() { int a=,b=; swap(&a,&b);//将实参的地址放入C++为形参分配的内存空间中 cout<<"a = "<<a<<",b = "<<b<<endl; } void swap(int &x,int &y)//函数定义 { int temp = x;//引用使用的时候,直接当变量名用 x = y; y = temp; } 执行结果如下:
a = ,b =
Java中,swap函数什么时候使用,由于何种必要使用?
在类中,实现两个成员变量值交换的swap方法:
class Test
{
private int a;
private int b;
//swap函数没有使用形参的必要性,本身就可以直接操作内成员a,b,不存在参数拷贝,a,b值交换成功
public void swap()
{
int temp = this.a;
this.a = b;
this.b = temp;
}
}
交互一个数组中的两个元素的值(可以画内存图分析,“栈中一小块内存指向堆中一大块内存,每new一次,就有新的指向”,如 Node ns[] = new Node[3]; ns[0] = new Node(0);)
public static void main(String []args)
{
int a[] = {1,2};
int temp = a[0];
a[0] = a[1];
a[1] = temp;
System.out.println("a[0] = " + a[0] + ",a[1] = " + a[1]);
}
打印结果:
a[0] = 2,a[1] = 1
public void changeRefNode()
{
Node nodes[] = new Node[2];
nodes[0] = new Node(0);
nodes[1] = new Node(1);
Node temp = nodes[0];
nodes[0] = nodes[1];
nodes[1] = temp;
System.out.println(nodes[0].n + " " + nodes[1].n);
//打印:1 0,交换成功 }
两个数组交换值
public static void main(String args[])
{
int a[] = {1,2};
int b[] = {3,4};
int temp[] = a;
a = b;
b = temp;
for(int i=0;i<a.length;i++)
{
System.out.print("a[" + i + "]=" + a[i] + " ");
}
System.out.println();
for(int j=0;j<b.length;j++)
{
System.out.print("b[" + j + "]=" +b[j] + " ");
}
}
打印结果:
a[0]=3 a[1]=4
b[0]=1 b[1]=2
对于引用数据类型
public class ReferValue
{
static String ss = "hello"; public static void change(String str)
{
str = "world";//调用change函数时,传ReferValue.ss,不能改变成员ss值。
// ss = "ss changed";//直接反问修改,可以改变ss值
}
public static void main(String args[])
{
change(ReferValue.ss);//将类或者对象的成员变量,“暴露出来”,当成实参传递给形参,这种做法就有待商榷。
}
}
附Java官方文档对于函数参数传递的解释(出自:http://docs.oracle.com/javase/tutorial/java/javaOO/arguments.html):
Passing Information to a Method or a Constructor
Passing Primitive Data Type Arguments
Primitive arguments, such as an int or a double, are passed into methods by value. This means that any changes to the values of the parameters exist only within the scope of the method. When the method returns, the parameters are gone and any changes to them are lost. Here is an example:
public class PassPrimitiveByValue {
public static void main(String[] args) {
int x = 3;
// invoke passMethod() with
// x as argument
passMethod(x);
// print x to see if its
// value has changed
System.out.println("After invoking passMethod, x = " + x);
}
// change parameter in passMethod()
public static void passMethod(int p) {
p = 10;
}
}
When you run this program, the output is:
After invoking passMethod, x = 3
Passing Reference Data Type Arguments
Reference data type parameters, such as objects, are also passed into methods by value. This means that when the method returns, the passed-in reference still references the same object as before.However, the values of the object's fields can be changed in the method, if they have the proper access level.
For example, consider a method in an arbitrary class that moves Circle objects:
public void moveCircle(Circle circle, int deltaX, int deltaY) {
// code to move origin of circle to x+deltaX, y+deltaY
circle.setX(circle.getX() + deltaX);
circle.setY(circle.getY() + deltaY);//会修改myCircle的成员变量y的值;通过set方法
// code to assign a new reference to circle
circle = new Circle(0, 0);//不会修改引用myCircle的指向
}
Let the method be invoked with these arguments:
moveCircle(myCircle, 23, 56)
circle initially refers to myCircle. The method changes the x and y coordinates of the object that circle references (i.e., myCircle) by 23 and 56, respectively. These changes will persist when the method returns.
Then circle is assigned a reference to a new Circle object with x = y = 0. (circle = new Circle(0, 0);) This reassignment has no permanence, however, because the reference was passed in by value and cannot change. Within the method, the object pointed to by circle has changed, but, when the method returns, myCircle still references the same Circle object as before the method was called.
由swap引发的关于按值传递和引用传递的思考与总结的更多相关文章
- PHP中按值传递和引用传递的区别
有次跟朋友讨论对象传值的方式时提到引用传值时,在大脑中搜索五秒钟,果断确定在这两个项目当中并没有用到.今天去问了一下度娘,顺便做了个小测试: 按值传递: 引用传递: 按值传递中原来参数的值在调用其他函 ...
- 【转】java方法参数传递方式--按值传递、引用传递
java的方法参数传递方式有两种,按值传递和引用传递 1.按值传递 参数类型是int,long等基本数据类型(八大基本数据类型),参数传递的过程采用值拷贝的方式 代码片段1: public class ...
- **JAVA参数传递方式 (按值传递与引用传递区别)
https://blog.csdn.net/q5706503/article/details/82910428public class TestMain { public static void ma ...
- python对象的复制问题,按值传递?引用传递?
这部分这篇博文说的很明白,转了过来 作者:winterTTr (转载请注明)http://blog.csdn.net/winterttr/article/details/2590741#0-tsina ...
- Java语言对对象采用的是引用传递还是按值传递?
按值调用表示方法接收的是调用者提供的值:而按引用调用表示方法接收的是调用者提供的变量地址:一个方法可以修改传递引用所对应的变量值, 而不能修改传递值调用所对应的变量值: Java语言对对象采用的是引用 ...
- 【C#】无损转换Image为Icon 【C#】组件发布:MessageTip,轻快型消息提示窗 【C#】给无窗口的进程发送消息 【手记】WebBrowser响应页面中的blank开新窗口及window.close关闭本窗体 【手记】调用Process.EnterDebugMode引发异常:并非所有引用的特权或组都分配给呼叫方 【C#】DataRowState演变备忘
[C#]无损转换Image为Icon 如题,市面上常见的方法是: var handle = bmp.GetHicon(); //得到图标句柄 return Icon.FromHandle(handle ...
- 一个随意list引发的惨案(java到底是值传递还是引用 传递?)
前两天写了一个递归,因为太年轻,把一个递归方法需要用到的list定义该递归方法外了,结果开始断点测试的时候有点小问题 ,然后上线之后因为数据量太多导致了一个java.util.ConcurrentMo ...
- 值传递:pass by value(按值传递) 和 pass by reference(引用传递)-[all]-[编程原理]
所有的编程语言,都会讨论值传递问题. 通过一个js示例直观认识 //理解按值传递(pass by value)和按引用传递(pass by reference) //pass by value var ...
- 124、Java面向对象之引用传递实例二,String类型按值传递
01.代码如下: package TIANPAN; /** * 此处为文档注释 * * @author 田攀 微信382477247 */ public class TestDemo { public ...
随机推荐
- Java处理Exception无法捕获的异常
场景: 使用try...catch(Exception e){}来捕获异常,执行过程中线程中断或阻塞了,但是catch块中却并没有捕获到异常信息. try{ // 此处可能是调用一个远程的接口,或是调 ...
- k8s(1)-使用kubeadm安装Kubernetes
安装前准备 1. 一台或多台主机,这里准备三台机器 角色 IP Hostname 配置(最低) 操作系统版本 主节点 192.168.0.10 master 2核2G CentOS7.6.1810 工 ...
- Linux(Ubuntu)使用 sudo apt-get install 命令安装软件的目录在哪?(已解决)
Linux(Ubuntu)使用 sudo apt-get install 命令安装软件的目录在哪? bin文件路径: /usr/bin 库文件路径: /usr/lib/ 其它的图标啊什么的路径 ...
- C# windows程序应用与JavaScript 程序交互实现例子
C# windows程序应用与JavaScript 程序交互实现例子 最近项目中又遇到WinForm窗体内嵌入浏览器(webBrowser)的情况,而且涉及到C#与JavaScript的相互交互问题, ...
- ResDepot CRC码
参考: 百度百科 crc校验 百度百科 crc编码 生日悖论 CRC32能不能用于检验文件的相同性 Egret RES版本控制 一.Egret的ResDepot在发布时,可以添加crc码. 发布前 发 ...
- IOS多线程处理
http://www.jianshu.com/p/0b0d9b1f1f19 首页专题下载手机应用 显示模式登录 注册登录 添加关注 作者 伯恩的遗产2015.07.29 00:37* 写了35 ...
- ngxs 状态管理器
官网文档 ng6,rxjs6.0.0,ngxs3.0.1 λ ng new ngxs --style=styl --routing --skip-install λ cd ngxs λ yarn λ ...
- js的with语句,和debugger语句
减少操作,速度及慢, 严格模式无法使用 debugger 在程序中打断点 'use strict' var name = 'global'; var obj = { name: "ajanu ...
- CSS3 transition 属性过渡效果 详解
CSS3 transition 允许 CSS 元素的属性值在一定的时间区间内平滑地过渡.我们可以在不使用 Flash 动画或 JavaScript 的情况下,在元素从一种样式变换为另一种样式时为元素添 ...
- 7个简单的Excel技巧,需要的赶紧get起来吧
1.直观数据图形化 2. Ctrl不连续选择 3. Ctrl+A相连文本框全选 4. 格式刷点击 5. SUM函数求和 6. 自动求和.自动求平均值.自动计数 7. 行.列距调节