我使用向前聲明,但仍然得到錯誤:'鏈接'沒有命名一個類型。爲什麼? struct link;
struct node
{
link *head_link; <------- this is the error location
node *next_node;
};
struct link
{
link *next_link;
node *
我得到這個編譯器錯誤 error: 'RawLog' does not name a type
下面是相關代碼: //DataAudit.h
#ifndef DATAAUDIT_H
#define DATAAUDIT_H
class RawLog;
class DataAudit
{
...
private:
RawLog* _createNewRawLog();