我现在用这个代码将指针移动1个字节,但我感觉不清楚……
int* a = (int*)malloc(sizeof(int)); void* b = ((char*)a)+1;
解决方法
我觉得你很困惑:
char
is 1 byte,but not defined for byte operation purpose. I believe there’s another way to do this byte operation. What’s the correct way to byte operation?
究竟是什么字节意味着什么,如果不是char意味着完全相同的东西?
在C和C中,字符是字节.根据定义.不是这种情况是字节必然是八位字节.一个字节至少包含8位.无法保证给定平台甚至可以引用一个恰好为8位的内存块.