在理解代码以及字节传输或字传输的需要之后,我正在尝试memcpy.c实现,具体取决于收到的数据。
#include<stdio.h>
void* my_memcpy(void*,const void*,int); // return type void* - can return any type
struct s_{
int a;
int b;
};
int main(){
struct s_ ss,dd;
ss.a = 12;
ss.b = 13;
printf("\n sizeof(struct) : %d \n",sizeof(ss));
my_memcpy(&dd,&ss,sizeof(ss));
printf("\n a:%d b:%d \n",dd.a,dd.b);
return 0;
}
void* my_memcpy(void* s,const void* d,int count){
if(((s | d | count) & (sizeof(unsigned int)-1)0)){
char* ps = (char* )s;
char* pd = (char* )d;
char* pe = (char* )s + count;
while(ps != pe){
*(pd++) = *(ps++);
}
}
else{
unsigned int* ps = (unsigned int* )s;
unsigned int* pd = (unsigned int* )d;
unsigned int* pe = (unsigned int* )s + count;
while(ps != pe){
*(pd++) = *(ps++);
}
}
}
错误:二进制文件的操作数无效(void *和const void *)。
我无法使用const void *。
在我之前在Understanding the implementation of memcpy()中提出的问题中,它提到了(ADDRESS)。
如何解决此错误?
答案 0 :(得分:3)
根据标准,您不能对指针使用按位运算: Why can't you do bitwise operations on pointer in C, and is there a way around this?
简单的解决方案(也在链接中指出)是使用铸造。
答案 1 :(得分:-2)
(s | d | count)
您应该使用逻辑或||而不是按位或|,因为我想你在这里检查这些参数,s和d不应该是NULL,count不应该为零。
与&amp;相同,应为&amp;&amp;。