程序设计学习(从c语言到c++)(课堂学习1)

程序设计学习(从c语言到c++)(课堂学习1)
1.引用的概念

int n=4;
int & r=n;//r是引用了n,r的类型
r=4;
cout<<r;//输出4
cout<<n;//输出4
n=5;
cout<<r;//输出5

注:在此程序中r就为n的别名,当n变换时,r也随之变换。(引用时一定要将其初始化成某个变量)

double a=4,b=5;
double & r1=a;
double & r2=r1;//r2也引用了a;
r2=10;
cout<<a<<endl;//输出为4
r1=b;//r1并没有引用b
cout<<a<<endl;//输出为5

注:在对其初始化之后不会在引用其他变量了。

引用做返回值

例如:

#include<iostream>
using namespace std;
int n=4;
int & SETVALUE()
{
return n;//返回对n的引用
}
int main() 
{
SETVALUE()=40;
cout<<n<<endl;
int & r=SETVALUE();
cout<<r<<endl;
return 0;
}

1)参数传值

例如:

#include<iostream>
using namespace std;
void Swap(int a,int b)
{
int tmp;
tmp=a;
a=b;
b=tmp;
cout<<"In Swap:a="<<a<<"b="<<b<<endl;
}//将a与b的值互换
int main()
{
int a=4,b=5;
Swap(a,b);
cout<<"After Swaping:a="<<a<<"b="<<b<<endl;
return 0;
}

2)参数值引用

用c语言的方法实现函数调用例子:
(求最大公约数和最小公倍数)

#include<stdio.h>
void GCDLCM();
int main()
{
int a,b;
int gcd,lcm;
scanf("%d %d",&a,&b);
GCDLCM(a,b,&gcd,&lcm);
printf("%d %d",gcd,lcm);
return 0;
}
void GCDLCM(int a,int b,int *gcd,int *lcm)
{
int m,n,r;
m=a,n=b;
do
{
r=m%n; m=n; n=r;
}while(r!=0)
*gcd=m;
*lcm=(a*b)/m;
}

同一个例子用c++语言实现:

#include<iostream>
using namespace std;
void GCDLCM(int a,int b,int & gcd,int & lcm);//c++语言中要求括号中必须与函数定义时相同,比c语言更严格。
int main()
{
int a,b;
int gcd,lcm;
cin>>a>>b;
GCDLCM(a,b,gcd,lcm);
cout<<gcd<<""<<lcm<<endl;
return 0;
}
void GCDLCM(int a,int b,int &gcd,int &lcm)
{
int m,n,r;
m=a;n=b;
do{
r=m%n;m=n;n=r;
}while(r!=0);
gcd=m;
lcm=(a*b)/m;
}

2.指针和动态分配内存
用new运算符动态分配内存时一定要用delete运算符释放
例如:

#define COUNT 5
int main()
{
int *a;
int i,j;
a=new int(COUNT);
if(a==NULL)
{
return 1;
}
for(i=0;i<COUNT;i++)
{
cin>>a[i];
}
for(j=0;j<COUNT;j++)
{
cout<<""<<a[j];
}
cout<<endl;
delete [] a;
return 0;
}

3.函数的重载
函数名相同,参数列表不同或者返回值类型不同。
例如:

#include<iostream>
using namespace std;
void print(int a);
void print(char *s); 
int main()
{
print(2);
print("Hello world");
return 0;
}
void print(int a)
{
cout<<a<<endl;
}
void print(char *s)
{
cout<<s<<endl;
}

例:

#include<iostream>
using namespace std;
void print(int a,int b=0);
int main()
{
print(1);//相当于给a,b赋予1,0
cout<<"---------"<<endl;
print(2,3);
return 0;
}
void print(int a,int b)
{
cout<<a<<endl;
if(b!=0)
{cout<<b<<endl;
}
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值