0

我正在尝试将数组传递给函数,但收到的值只是数组中的第一个值。我究竟做错了什么 ?以下是操作中涉及的 3 个功能。

void computeCScode (int temp1, int temp2, int code[])
{
    if((temp1<100)&&(temp2<100)) 
{
    code[0]=1;
    code[1]=0;
    code[2]=1;
    code[3]=0;
}
else if((temp1<100)&&(temp2>=100&&temp2<=400))
{
    code[0]=1;
    code[1]=0;
    code[2]=0;
    code[3]=0;
}
...
 }

 void invert(int x1, int y1, int x2, int y2, int firstCode[], int secondCode[])
   {
     int ok=1;
int *temp;
temp=(int*)malloc(sizeof(firstCode));
int aux;
if(firstCode==0000) ok=1;
else ok=0;
...

}

void cs(HDC hdc, int x1, int y1, int x2, int y2)
{
int firstCode[4];
int secondCode[4];
FINISHED = FALSE;
DISPLAY=FALSE;
REJECTED=FALSE;
do
{
    computeCScode(x1,y1,firstCode);
    computeCScode(x2,y2,secondCode);
    ...
            invert(x1,y1,x2,y2,firstCode,secondCode);
    }while(!FINISHED);
}

在 computeCScode 之后,firstCode 和 secondCode 就可以了。但是当将它们传递给反转时,在函数内部它们只使用函数的第一个值。我忘记了什么?

4

1 回答 1

1

这部分invert没有做你认为它做的事情:

temp=firstCode;
firstCode=secondCode;
secondCode=temp;

如果您真的想交换数组的内容,请使用memcpyorfor循环,例如

for (i = 0; i < 4; ++i)
{
    int temp = firstCode[i];
    firstCode[i] = secondCode[i];
    secondCode[i] = temp;
}
于 2012-05-14T20:19:44.613 回答