一个奇怪的函数参数定义及解答 |
关于一个奇怪的函数参数定义及解答 问题来源于:涛涛的blog:http://www.sysinfo.cn/index.php?action=show&id=297&page=1#cm433 解答:kernelxu:http://blog.chinaunix.net/index.php?blogId=5727 |
一个奇怪的函数参数定义及解答 |
奇怪的参数声明: unsigned int str_len(s) t = s; 试了一下编译可以通过,也可以正常运行... 估计跟 unsigned int str_len(register char *s) t = s; 是等价的... 可是不知道为什么要来四次if (!*t) return t - s; ++t; 不知道跟一次有什么区别... —————————————————————————————————— 我的解答: 1、是老板本的C吧,在老版本C语言中,参数类型说明允许放在函数说明部分的第2行单独指定。 例如: int fun(s) int s; { ... } (关于流水线可查看: 1)、CPU的流水线: http://www.blueidea.com/bbs/NewsDetail.asp?id=1821795) 2)、pipeline较详细说明: http://www.cs.umass.edu/~weems/CmpSci535/Discussion16.html 3)、《Starting Down the Pipeline》:http://faculty.uwb.edu/aberger/CSS422SP05/Articles/Pipelines%20part%201%20and%202.pdf 4)、The Intel Pentium 4 processor 20 stages of pipeline introduce: http://www.karbosguide.com/hardware/module3e14.htm
不知道是不是这样,请高手指点! |