我有以下代碼,錯誤IntelliSense: expected a ';'
是在該行報告指出:預期錯誤a';'
Q
預期錯誤a';'
0
A
回答
9
你實際的代碼是這樣的:
Dictionary::Dictionary() {
...
Word* fromRecord(const string &theWord,
const string &theDefinition,
const string &theType)
{
...
}
...
}
換句話說,你定義內功能的功能。這是不允許的。
0
我假設fromRecord是一個函數調用或構造函數。所以你打開一個新的範圍
Word* fromRecord(const string &theWord,
const string &theDefinition,
const string &theType); <- Here
如果您的目的是創建那麼內部函數看lambda表達式前缺少一個冒號。
0
我缺少一個分號
struct Node {
int data;
Node* left;
Node* right;
}; // <---------- was missing a semicolon here
#include <iostream>
#include <string>
#include <algorithm>
using namespace std;
添加一個分號解決的問題。
相關問題
- 1. 錯誤:預期「;」
- 2. 錯誤預期)
- 3. uint8_t *預期的a;
- 4. 錯誤:預期 ')' 'CLLocation'
- 5. iOS錯誤預期')'
- 6. AlertView錯誤預期「:」
- 7. 錯誤:預期型
- 8. 錯誤:預期「)」「N」
- 9. .class預期錯誤
- 10. CS1513錯誤}預期
- 11. 錯誤CS1513:}預期
- 12. 用A + Promises處理預期的操作錯誤
- 13. 錯誤:「)」預期編譯器錯誤
- 14. 錯誤語法錯誤「;」,預期 - 的Minecraft
- 15. 預期標識符錯誤或「(」錯誤
- 16. 錯誤:預期';'之前'{'token
- 17. 預期表達式錯誤
- 18. 預期的對象錯誤
- 19. 錯誤:之前的預期
- 20. 預期值,錯誤結果
- 21. 語法錯誤{預期
- 22. 錯誤:預期「}」在輸入
- 23. JSON解析錯誤:預期 '}'
- 24. C++:錯誤「申報預期」
- 25. 錯誤「‘(’預期」上線5
- 26. 語法錯誤++預期?
- 27. 錯誤預期'{'令牌
- 28. 錯誤預期循環VBScript
- 29. 「預期宣言」錯誤
- 30. Haskell錯誤,預期類型
http://ideone.com/Z12Mca完整代碼。 – user2881555
雙擊錯誤,它會將您帶到它出現的位置。 –
您的鏈接也無法訪問「完整代碼」,也沒有顯示測試用例(http://sscce.org/)。 –