void *指针的加减运算

Posted 立体风

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了void *指针的加减运算相关的知识,希望对你有一定的参考价值。

1、手工写了一个程序验证void *指针加减运算移动几个字节:

//本程序验证空类型指针减1移动几个字节                                                              
#include <stdio.h>
int main(int argc, char *argv[])
{
    int a=10,b=20;
    int *pa=&a;
    void * pa1=(void *)pa;
    printf("int pa->a,%p\n",pa);
    printf("int pa+1=%p\n",(pa+1));
    printf("void pa1->a,%p\n",pa1);
    printf("void pa1+1=%p\n",(pa1+1));

    return 0;
}

输出:

[email protected]:~$ ./p1
int pa->a,0x7ffde5e8db10
int pa+1=0x7ffde5e8db14
void pa1->a,0x7ffde5e8db10
void pa1+1=0x7ffde5e8db11

由上可知,当一个int指针被强转为void型指针后,加1,由以前移动4个字节变为了移动1个字节。

结论:void *指针加减1,移动1个字节,这个在一些计算地址的宏和函数里会用到。

例如:container_of宏:

/**
 * container_of - cast a member of a structure out to the containing structure
 * @ptr:    the pointer to the member.
 * @type:    the type of the container struct this is embedded in.
 * @member:    the name of the member within the struct.
 *
 */
#define container_of(ptr, type, member) ({                    void *__mptr = (void *)(ptr);                        BUILD_BUG_ON_MSG(!__same_type(*(ptr), ((type *)0)->member) &&                 !__same_type(*(ptr), void),                         "pointer type mismatch in container_of()");        ((type *)(__mptr - offsetof(type, member)));   //__mptr指针为void *指针保证了减法运算的结果。

 

以上是关于void *指针的加减运算的主要内容,如果未能解决你的问题,请参考以下文章

C++指针的算术运算 关系运算

考前自学系列·计算机组成原理·补码定点加减运算和溢出判断,浮点数的加减运算,原码的乘法

计算机组成原理——浮点数加减运算&强制类型转换

计算机组成原理——浮点数加减运算&强制类型转换

浮点数的加减运算都有哪些步骤

数组实现多项式的加减乘运算