回应我第一个问题
看一下这个例子
#include <stdio.h>
int main(void)
{
int arr[] = {10, 20};
int *p = arr;
*p++;
printf("arr[0] = %d, arr[1] = %d, *p = %d", arr[0], arr[1], *p);
return 0;
}
The expression *p++ is treated as *(p++) as the precedence of postfix ++ is
higher than *. Therefore the output of second program is “arr[0] = 10,
arr[1] = 20, *p = 20“.
我还是搞不太懂阿....
※ 引述《bdvstg (bdvstg)》之铭言:
: 刚刚查了一下优先级
: Suffix increment > Indirection (dereference) > Direct assignment
: ++ (第2个) > *(第3) > =(第16)
: 所以我想问一下为什么不是++先做
: 而是取值和赋値先
: 也就是为什么不是底下这样
: while (*t)
: {
: s++;
: t++;
: *s=*t
: }
: 另外我对那种多个的Condition判断疑惑很久了
: (不知道有没有术语,想下关键字查一下)
: while(*s++ = *t++)
: 是要看*s的値,还是*t的値 (以程式逻辑来猜应该是*t)
: (原文中两种都有人回)
: 还是要看 赋値的回传结果?
: 另外我看过3个的...
: 类似底下这样
: while(*s++ = *t++ = *q++)
: 不过那时候不影响我读code就不管它
: ※ 引述《BitTorrent (螳勃唬)》之铭言:
: : 请问一下
: : strcpy 中
: : while( *s++ = *t++);
: : 可以copy char arrays
: : 想请问一下可是++ 优先权 不是大于*
: : 所以照理讲第一个不会被复制到阿?