0

以下函数 populateArpeggioArray 采用指向包含多个成员的 typedef 结构的指针,这些成员的身份不一定与我遇到的问题相关。在将指向结构的指针传递给函数 sortNoteStack 之前,populateArpeggioArray 应该对结构的内部元素执行一些操作。

我发现 sortNoteStack 从未对该结构进行操作,因为 populateArpeggioArray 在某些时候会更改指向该结构的指针的值,然后再将更改的值传递给 sortNoteStack。

据我所知,代码的格式似乎正确,对结构元素执行的所有操作都具有正确的指针取消引用。据我所见,没有任何代码行应该能够修改指向结构的指针的值。用 const 前缀声明结构没有帮助,因为它的成员因此也被锁定为一个固定值。

我愿意接受这可能是模拟器的问题,而不是代码的问题,但如果我编写的代码存在一些潜在问题,我当然想了解我做错了什么。

谢谢您的帮助。

-缺口

void populateArpeggioArray(arpeggio* arp) {
        uint8_t i = 0,j=0, newNoteFlag=0;

        for(i=0; i<12; i++) {
            newNoteFlag = 0;
            if(globals.keyboardCurrentState[i]) {                                   /* Check to see if the current state shows that a keyboard button is pressed. */
                arp->sequenceLength++;                                              /* Temporarily increase the sequence length */
                for(j=0;j < arp->sequenceLength;j++) {                              /* Check the pitch of each note currently in the note stack */
                    if(globals.keyboardNotes[i] == arp->notesUnordered[j].pitch) {  /* If the currently selected note is already present in the note stack, */
                        arp->sequenceLength--;  
                        newNoteFlag = 1;                                            /* undo the temporary sequence length increase */
                    }           
                }   
                if(!newNoteFlag) {
                    arp->notesOrdered[arp->sequenceLength].pitch = globals.keyboardNotes[i]+liveArpeggio.transposeShift;
                    arp->notesUnordered[arp->sequenceLength].pitch = globals.keyboardNotes[i]+liveArpeggio.transposeShift;      /* Add the new pitch to the appended note */
                    arp->notesOrdered[arp->sequenceLength].length = 111;
                    arp->notesUnordered[arp->sequenceLength].length = 111;                          /* Give the new note a default length. TEMP */
                }
            }           
        }   
        sortNoteStack(&arp);
    }
4

1 回答 1

3

使用sortNoteStack(&arp),您传递的是指针的地址,而不是结构的地址。您想传递结构的地址(指针的值)。因此,使用sortNoteStack(arp).

于 2013-08-04T19:22:43.407 回答