形参与函数指针

强行指针输出数组元素

# include<iostream>
using namespace std;

int main(){
	int arr[3][3] = {{1,2,3},{4,5,6},{7,8,9}};
	for(int i=0;i<3;i++){
		for(int j=0;j<3;j++){
			cout << *(*(arr+i)+j) << " ";
			
		}
		cout << endl;
	}
	return 0;
}

形参指针

  • 在不同函数间传递大量数据时开销较高;
  • 传递的数据在一块连续的内存区;
  • 可以使用指针作为参数指向数据的地址;
# include<iostream>
using namespace std;

//使用指针作为形参
void splitFloat(float x, int *ip,float *fp){
	*ip = static_cast<int>(x);
	*fp = x - *ip;
}

int main(){
	int i;
	float x,f;
	cin >> x ;
	//使用变量地址作为实参
	splitFloat(x, &i,&f);
	cout << "Inteager part:"  <<  i << "Float part:" << f << endl;
	return 0;
}

作用

  • 形参与实参指向共同内存地址;
  • 减少传递数据所耗开销;

指向函数

# include<iostream>
using namespace std;

void message(float d){
	cout << "The messsage is:" << d << endl; 
}
void number(float d){
	cout << "The number is:" << d << endl;
}
const float f = 3.22f;
int main(){
	message(f);
	//定义函数指针
	void (* fp)(float);
	//指向message
	fp = message;
	fp(f);
	//指向number
	fp = number;
	fp(f);
	return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值