一个C++问题 求大神!
#include<iostream>usingnamespacestd;voidtest1(int*a1){a1=newint(5);cout<<"*a1="<<*a1<...
#include <iostream>
using namespace std;
void test1( int *a1 )
{ a1 = new int( 5 ) ;
cout << "*a1 = " << *a1 << endl ;
}
void test2(int * & a2)
{ a2 = new int( 5 ) ;
cout << "*a2 = " << *a2 << endl ;
}
int main()
{ int *p = new int( 1 ) ;
test1( p ) ;
cout << "test1: *p1 = " << *p << endl ;
test2( p ) ;
cout << "test2: *p2 = " << *p << endl ;
}
【解答】
*a1= 5
test1: *p1= 1
*a2= 5
test2: *p2= 5
为什么答案是这个,test2(int * & a2)是什么意思!求解答 展开
using namespace std;
void test1( int *a1 )
{ a1 = new int( 5 ) ;
cout << "*a1 = " << *a1 << endl ;
}
void test2(int * & a2)
{ a2 = new int( 5 ) ;
cout << "*a2 = " << *a2 << endl ;
}
int main()
{ int *p = new int( 1 ) ;
test1( p ) ;
cout << "test1: *p1 = " << *p << endl ;
test2( p ) ;
cout << "test2: *p2 = " << *p << endl ;
}
【解答】
*a1= 5
test1: *p1= 1
*a2= 5
test2: *p2= 5
为什么答案是这个,test2(int * & a2)是什么意思!求解答 展开
1个回答
展开全部
指针变量的地址
追问
第一个问题呢?能详细点么?这个答案我百度都有啦
追答
a1= new int( 5 ) ;初始化a1为5,所以输出5.传递的是副本,不影响原来的p。
a2 = new int( 5 ) ;这里传递的是引用所以原来的p也被改变了
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
意法半导体(中国)投资有限公司
2023-06-12 广告
2023-06-12 广告
单片机,即单片微控制器,也称为单片微型计算机,是将中央处理器(CPU)、存储器(ROM,RAM)、输入/输出接口和其他功能部件集成在一块 在一个小块的集成电路上,从而实现对整个电路或系统的数字式控制。单片机不是完成某一个逻辑功能的芯片,而是...
点击进入详情页
本回答由意法半导体(中国)投资有限公司提供
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询