Syntax error on token "int", record expected
时间: 2023-12-29 11:02:32 浏览: 234
This error message typically occurs when there is a missing semicolon or a syntax error in the code. It indicates that the compiler was expecting a record identifier after the "int" data type, but encountered something else instead.
To fix this error, check the code for any missing semicolons or syntax errors. Make sure that the code is properly formatted and that all required elements are present. If you are still having trouble, try consulting a programming reference or seeking assistance from a more experienced programmer.
相关问题
Syntax error on token "public", record expected after this token - Syntax error on token "{", { expected after this token
这个错误提示意味着在代码的某个位置出现了语法错误。通常情况下,这个错误是由于一些原因导致的括号或者其他符号不匹配,导致代码无法正常编译。具体的原因需要根据你的代码来分析。请检查你的代码,特别是括号和其他符号,确保它们都是匹配的。另外,确保你的代码中没有未关闭的注释,因为这也可能导致语法错误。如果你无法找到问题所在,可以将代码和完整的错误信息一起提交,这样我就可以更好地帮助你解决问题。
llegal modifier for parameter getsum; only final is permitted - Syntax error on token "int", record expected
这个错误提示意味着该方法的参数 getsum 被声明为了非法修饰符,只有 final 修饰符是被允许的。"int" 关键字也有错误,应该使用 "type" 来声明参数类型。因此,你需要更改你的代码以符合正确的语法规范,具体做法取决于你的代码实际情况。
阅读全文