E:\数据结构实验\树\树.cpp|476|error: expected primary-expression before ']' token|
时间: 2023-09-27 22:12:48 浏览: 131
这个错误通常是因为你在代码中使用了不正确的语法。具体来说,可能是你在数组名称后面使用了不正确的符号或者没有使用正确的语法来访问数组元素。
例如,如果你有一个名为“array”的数组,并且想要访问其中的第一个元素,正确的语法应该是“array[0]”,而不是“array]0]”或“array.[0]”。
请检查你的代码,确保使用了正确的数组语法,并且没有在数组名称和下标之间使用了不正确的符号。
相关问题
D:\LeStoreDownload\3271833\main.cpp|8|error: expected primary-expression before '<<' token|
This error message typically occurs when there is a syntax error in the code. In this case, it seems like the code is trying to use the "<<" operator in an incorrect way.
Without seeing the full code and context, it's difficult to provide a specific solution. However, some common reasons for this error may include:
- Forgetting to include the necessary header files
- Using the "<<" operator with incorrect operands or syntax
- Typo or error in the code that is causing the compiler to misinterpret the intended meaning.
To resolve this error, you should carefully review the code and identify any syntax errors or incorrect usage of operators. You may also want to consult the documentation or seek advice from other developers to help identify and fix the issue.
||=== 构建: Debug 在 prjCodeBlocks 中 (编译器: GNU GCC Compiler) ===| C:\Users\jian\Downloads\计算机学院-2022-2023-2-22\src\winman.cpp||In function 'void OnCustomerLeave(void*)':| C:\Users\jian\Downloads\计算机学院-2022-2023-2-22\src\winman.cpp|372|warning: too many arguments for format [-Wformat-extra-args]| C:\Users\jian\Downloads\计算机学院-2022-2023-2-22\src\winman.cpp|372|warning: too many arguments for format [-Wformat-extra-args]| C:\Users\jian\Downloads\计算机学院-2022-2023-2-22\src\winman.cpp|374|error: expected primary-expression before '.' token|
这是一个编译错误,具体错误在 winman.cpp 文件的第 374 行。错误提示是 expected primary-expression before '.' token,这意味着在该行代码中,出现了一个不合法的表达式,可能是某个变量或函数调用的语法有误。同时,在第 372 行也出现了警告,提示格式化字符串中的参数过多。你需要检查代码中的语法错误和参数传递是否正确。
阅读全文