参数传递问题
ATest.cpp: Defines the entry point for the console application.
//参数传递问题
include stdafx.h
include iostream
using namespace std;
void fun(int a,int*b,int c,int* d)
{
a ;
(*b) ;
b = new int(10);
coutaaaa bendl;//地址
coutbbbb *bendl;//5
c ;
d ;
d = new int(5);
coutdddd dendl;//地址
coutdddd2 *dendl;//5
}
int main(int argc, char* argv[])
{
int a=2,b=3,c=4,d=5;
int* p = d;
fun(a,b,c,p);
coutaendl;//2 值传递
coutbendl;//4 指针传递
coutcendl;//5 引用传递
coutdendl;//5 引用传递 指向指针的引用
cout*pendl;//10 引用传递 int(5)为整型初始化
// printf(Hello World!);
return 0;
}
【参数传递问题】相关文章:
JS AJAX前台如何给后台类的函数传递参数的方法09-29
桥接中路由器配置IP参数问题08-07
剪影摄影技巧参数10-08
餐饮管理参数解读08-20
晶体管参数有哪些-晶体管的参数11-06
常见的硬盘参数介绍10-08
java jar 命令行参数08-09
CAD系统变量及参数大全11-11
NX的参数化建模方法10-27
浅析硬盘的性能参数07-16