void MyFunc( ){ cout<<”无参数函数调用”<<endl;}
void MyFunc( int a){ cout<<”1 个整型参数函数调用”<<a<<endl;}
void MyFunc( int a, int b){ cout<”< 2 个整型参数函数调用”<<a<<”,”<<b<<endl;};
long MyCaculate(long a=10,long b=20){cout<<a<<”,”<<b<<endl; return a*a+b*b;};
cout<<MyCaculate( )<<endl;
cout<<MyCaculate( 1 )<<endl;
cout<<MyCaculate( 1, 2 )<<endl;
. 对比有无 delete p 语句的机器资源占用情况,分析。
2.2.3 引用
. 再增加一个结构和函数定义:
struct S_Big{
. 将主函数修改成以下内容(原有内容屏蔽,但不要删除):
S_Big a;
for (int i=0;i<200000;++i) TestRef(a);
. 运行(注意记录大致运行时间)。
. 将 TestRef 函数的形式参数x 修改成&x
. 再次运行程序,记录运行时间。
评论0
最新资源