C++ 中,参数func(int* a)和func(int *a)是一样的吗?

以前没学过C++,像func(int* a)和func(int *a)是一样的吗?

是一样的效果,试下就知道了:
#include <iostream.h>
void fun1(int* a);
void fun2(int *a);
void fun3(int * a);
int main()
{
int a=5;
fun1(&a);
fun2(&a);
fun3(&a);

return(0);
}

void fun1(int* a){
cout << *a << "\n";
}

void fun2(int *a){
cout << *a << "\n";
}
void fun3(int * a){
cout << *a << "\n";
}

这里程序运行的结果:
5
5
5
Press any key to continue
温馨提示:内容为网友见解,仅供参考
第1个回答  2010-12-12
一样的,都是指针参数类型的
第2个回答  2010-12-12
指针有三中写法
int* a;
int * a;
int *a;
第三种是较为常见的方法.
第3个回答  2010-12-12
一样
第4个回答  2010-12-12
完全一样
相似回答