强行指针输出数组元素
# 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);
fp = message;
fp(f);
fp = number;
fp(f);
return 0;
}