0

我有这个函数,我正在尝试转换,但我无法理解代码的某些部分发生了什么。谁能帮我解释一下代码。我只想知道他们对指针做了什么。代码中有一些空白注释,他们用指针做地狱,我只是不明白。

任何帮助表示赞赏。

WORD** m_Pixels;

int pixel(int x, int y)
{

    if (x<0 || y<0 || x>=m_Width || y>=m_Height)
        return -1;

    WORD    *pPixels = m_Pixels[y];

    //
    int count = *pPixels++;

    int index = 0;

    register int i;

    if (count > 0)
    {
        i = count;
        do {
            // 
            index += *pPixels++;

            if (x < index)
            {
                return -1;
            }

            //      
            index += *pPixels;

            // 
            pPixels += *pPixels;

            pPixels++;


            // 
            index += *pPixels;

            // 
            pPixels += *pPixels;

            pPixels++;

            if (x < index)
            {
                return pPixels[x-index];
            }
        } while (--i);
    }

    return -1;
}
4

1 回答 1

2
int count = *pPixels++;

取消引用pPixels指针以获取值并将其分配给count并递增指针 - 这将使指针指向数组中的下一个元素 ( m_Pixels)


index += *pPixels++;

递增index值,由pPixels指针指向并递增 - 这将使指针指向数组中的下一个元素


pPixels += *pPixels;
pPixels += *pPixels;

将指针 X 位置向前移动,其中 X 是值,由pPixels

于 2011-06-09T10:00:15.240 回答