error: ?unit? was not declared in this scope; did you mean ?uint??
时间: 2023-10-25 16:34:22 浏览: 131
Scope(作用域).md
This error message suggests that there is a typo in the code and the compiler cannot find a declaration for the variable or type "unit". It suggests "uint" as a possible alternative, which is a common abbreviation for "unsigned integer". The programmer should check the spelling of the identifier and make sure it is properly declared or defined in the code.
阅读全文