- 论坛徽章:
- 3
|
本帖最后由 captivated 于 2013-05-01 05:24 编辑
回复 2# hbmhalley
int a[5];
a 的类型是数组类型, 在作为函数参数时退化为int *类型.
&a 的类型是 int (*)[5].
&&a不合法.
===================
- #include <stdio.h>
- void foo(int *p, int len)
- {
- }
- int main(void)
- {
- int a[5];
- foo(&a, 5);
- return 0;
- }
复制代码 ===================
gcc的warning:
type.c: In function ‘main’:
type.c:12: warning: passing argument 1 of ‘foo’ from incompatible pointer type
type.c:3: note: expected ‘int *’ but argument is of type ‘int (*)[5]’
===================
gcc的版本:
root@captivated:/home/tmp# gcc -v
Using built-in specs.
Target: x86_64-linux-gnu
Configured with: ../src/configure -v --with-pkgversion='Ubuntu 4.4.3-4ubuntu5.1' --with-bugurl=file:///usr/share/doc/gcc-4.4/README.Bugs --enable-languages=c,c++,fortran,objc,obj-c++ --prefix=/usr --enable-shared --enable-multiarch --enable-linker-build-id --with-system-zlib --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --with-gxx-include-dir=/usr/include/c++/4.4 --program-suffix=-4.4 --enable-nls --enable-clocale=gnu --enable-libstdcxx-debug --enable-plugin --enable-objc-gc --disable-werror --with-arch-32=i486 --with-tune=generic --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu
Thread model: posix
gcc version 4.4.3 (Ubuntu 4.4.3-4ubuntu5.1)
|
|