(*p)++和*(p++)和*p++的区别
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了(*p)++和*(p++)和*p++的区别相关的知识,希望对你有一定的参考价值。
* 和++优先级是同一级别,同一级别按照从右往左的顺序计算
所以: *p++等价于*(p++)
char *a="this a book";
char *p = a;
p++;
printf("%c\n", *p);//output:h
*p++;
printf("%c\n", *p);//output:i
/* overflow
char x = (*p)++;
printf("%d\n", x);
*/
while (*p != ‘\0‘) {
printf("%c", *p++);//is
}
printf("\n");
以上是关于(*p)++和*(p++)和*p++的区别的主要内容,如果未能解决你的问题,请参考以下文章
Python练习册 第 0013 题: 用 Python 写一个爬图片的程序,爬 这个链接里的日本妹子图片 :-),(http://tieba.baidu.com/p/2166231880)(代码片段