-5

每当我尝试编译时,我的调试器都会出现该错误(在 ')' 标记之前的预期主表达式)。这是有错误的代码。

#define threshold 40 //threshold intensity

using namespace std;
using namespace cimg_library;

void RegionGrow (CLinkedList<struct structure> &ListName, CByteImage &Img, uint32_t uRow, uint32_t uCol)
{
 if (Img.Element (uRow+1, uCol) > threshold)
 {
  ListName.AddToTail(structure);
  Img.Element (uRow+1, uCol) = 0;
  RegionGrow (ListName, Img, uRow+1, uCol);
 }
}

有人知道C链表吗?或错误处理?请帮忙。谢谢。

4

1 回答 1

3

排队:

ListName.AddToTail(结构);

结构是数据类型而不是对象。

也许你打算写这样的东西:

ListName.AddToTail(ListName);

编辑:另外,您在错误的上下文中使用术语调试器、C 链接列表和错误处理。参考一些好的 C++ 书籍:The Definitive C++ Book Guide and List

于 2013-03-07T18:43:13.887 回答