erro:expected identifier of ‘(’before ‘return’
时间: 2024-04-30 22:19:36 浏览: 96
最常见的VC++编译错误信息_fatal_error
这个错误通常出现在函数定义中,意味着在函数名和左括号之间缺少了标识符。请检查你的代码,看看是否有类似下面的问题:
```
void myFunction return(int x) {
// some code here
}
```
在上面的例子中,应该是 `void myFunction(int x)` 而不是 `void myFunction return(int x)`。确保你的函数定义中没有语法错误。
阅读全文