免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2076 | 回复: 6
打印 上一主题 下一主题

[C] Is this defined? [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2013-04-30 11:13 |只看该作者 |倒序浏览
本帖最后由 rosynirvana 于 2013-04-30 20:20 编辑

例子来自
http://coolshell.cn/articles/5761.html
的最后一段代码
  1. #include <stdio.h>
  2. int main(void)
  3. {
  4.     int a[5];
  5.     printf("%x\n", &a+1);
  6. }
复制代码
C99 6.5.6.8
When an expression that has integer type is added to or subtracted from a pointer, the
result has the type of the pointer operand. If the pointer operand points to an element of
an array object, and the array is large enough, the result points to an element offset from
the original element such that the difference of the subscripts of the resulting and original
array elements equals the integer expression.  ... otherwise, the
behavior is undefined.


6.5.6.10还有一个例子
  1. {
  2. int n = 4, m = 3;
  3. int a[n][m];
  4. int (*p)[m] = a; // p == &a[0]
  5. p += 1; // p == &a[1]
  6. (*p)[2] = 99; // a[1][2] == 99
  7. n=p-a; //n==1
  8. }
复制代码
于是,如果a是二维数组,a+1明显是有定义的;但是原例子中的a是一维数组,那么&a+1是否是有定义的行为呢

论坛徽章:
0
2 [报告]
发表于 2013-04-30 17:37 |只看该作者
回复 1# rosynirvana


   
于是,如果a是二维数组,&a+1明显是有定义的;

    啥逻辑?
    a+1 是有定义的
    &a+1 是毛

论坛徽章:
0
3 [报告]
发表于 2013-04-30 20:20 |只看该作者
回复 2# hbmhalley
my bad
笔误

   

论坛徽章:
0
4 [报告]
发表于 2013-04-30 21:59 |只看该作者
回复 3# rosynirvana


    帮你问了问

    c99 6.5.6-7
For the purposes of these operators, a pointer to an object that is not an element of an array behaves the same as a pointer to the first element of an array of length one with the type of the object as its element type.

论坛徽章:
0
5 [报告]
发表于 2013-05-01 00:47 |只看该作者
回复 4# hbmhalley


    谢谢,明白了

论坛徽章:
3
15-16赛季CBA联赛之山东
日期:2016-10-30 08:47:3015-16赛季CBA联赛之佛山
日期:2016-12-17 00:06:31CU十四周年纪念徽章
日期:2017-12-03 01:04:02
6 [报告]
发表于 2013-05-01 05:22 |只看该作者
本帖最后由 captivated 于 2013-05-01 05:24 编辑

回复 2# hbmhalley


    int a[5];

a 的类型是数组类型, 在作为函数参数时退化为int *类型.
&a 的类型是 int (*)[5].

&&a不合法.

===================

  1. #include <stdio.h>

  2. void foo(int *p, int len)
  3. {

  4. }

  5. int main(void)
  6. {
  7.     int a[5];
  8.     foo(&a, 5);

  9.     return 0;
  10. }
复制代码
===================

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)

论坛徽章:
2
程序设计版块每日发帖之星
日期:2015-06-17 22:20:00每日论坛发贴之星
日期:2015-06-17 22:20:00
7 [报告]
发表于 2013-05-01 09:17 |只看该作者
提示: 作者被禁止或删除 内容自动屏蔽
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP