||=== 构建文件: "无目标" 在 "无项目" 中 (编译器: 未知的) ===| D:\Code\C++Files\Mo\test.cpp||In instantiation of 'LinkedList<T>::LinkedList(T*) [with T = int]':| D:\Code\C++Files\Mo\test.cpp|135|required from here| D:\Code\C++Files\Mo\test.cpp|29|error: 'begin' was not declared in this scope; did you mean 'std::begin'?| d:\program\mingw\lib\gcc\mingw32\9.2.0\include\c++\bits\range_access.h|105|note: 'std::begin' declared here| D:\Code\C++Files\Mo\test.cpp|29|error: 'end' was not declared in this scope; did you mean 'std::end'?| d:\program\mingw\lib\gcc\mingw32\9.2.0\include\c++\bits\range_access.h|107|note: 'std::end' declared here| ||=== 构建 失败: 2 error(s), 2 warning(s) (0 分, 1 秒) ===|
时间: 2023-07-19 07:49:58 浏览: 389
这是一个编译错误,可能是由于代码中使用了未声明的变量或函数导致的。具体来说,编译器提示 "begin" 和 "end" 函数未在作用域中声明,可能是因为你没有包含正确的头文件,或者你需要使用 std 命名空间来访问这些函数。你可以尝试包含 <iterator> 头文件,并使用 std::begin 和 std::end 函数来解决这个问题。
阅读全文