error C4996: 'std::_Uninitialized_copy0':與錯誤 LNK2001 無法解析的外部符號 "private: static class std::allocator
/*
在構造簡易版vector<string>時遇到這兩個問題,程式碼如下:
*/
#include<memory>
#include<iostream>
#include<string>
#include<utility>
#include<vector>
class StrVec {
public:
StrVec() :elements(nullptr), first_free(nullptr), cap(nullptr) { }
StrVec(const StrVec&);
StrVec(std::initializer_list<std::string>);
StrVec &operator=(const StrVec&);
~StrVec();
void push_back(const std::string);
size_t size() const { return first_free - elements; }
size_t capicity() const { return cap - elements; }
void reserve(size_t n);
void resize(size_t n);
string show(std::vector<std::string>::size_type i);
std::string *begin() const { return elements; }
std::string *end() const { return first_free; }
private:
static std::allocator<std::string> alloc;
void chk_n_alloc() { if (size() == capicity()) reallocate(); }
std::pair<std::string*, std::string*> alloc_n_copy(const std::string*, const std::string*);
void free();
void reallocate();
std::string *elements;
std::string *first_free;
std::string *cap;
};
void StrVec::push_back(const std::string s) {
chk_n_alloc();
alloc.construct(first_free++, s);
}
std::pair<std::string*, std::string*> StrVec::alloc_n_copy(const std::string *s1, const std::string *s2) {
auto data = alloc.allocate(s2 - s1);
return { data, uninitialized_copy(s1, s2, data) };
}
void StrVec::free() {
if (elements) {
for (auto p = first_free; p != elements;) {
alloc.destroy(--p);
}
alloc.deallocate(elements, cap - elements);
}
}
StrVec::StrVec(const StrVec& st) {
auto newdata = alloc_n_copy(st.begin(), st.end());
elements = newdata.first;
first_free = newdata.second;
cap = newdata.second;
}
StrVec::StrVec(std::initializer_list<std::string> s) {
auto newdata = alloc_n_copy(s.begin(), s.end());
elements = newdata.first;
first_free = newdata.second;
cap = newdata.second;
}
StrVec::~StrVec() {
this->free();
}
StrVec &StrVec::operator=(const StrVec& st) {
auto newdata = alloc_n_copy(st.begin(), st.end());
this->free();
elements = newdata.first;
first_free = newdata.second;
cap = newdata.second;
return *this;
}
void StrVec::reallocate() {
auto newcapcity = this->size() ? 2 * this->size() : 1;
auto newdata = alloc.allocate(newcapcity);
auto dest = newdata;
auto elem = this->elements;
for (size_t i = 0; i < this->size(); ++i) {
alloc.construct(dest++, std::move(*elem++));
}
this->elements = newdata;
this->first_free = dest;
this->cap = this->elements + newcapcity;
}
void StrVec::reserve(size_t n) {
if (n > this->capicity()) {
auto newdata = alloc.allocate(n);
auto dest = newdata;
auto elem = this->elements;
for (size_t i = 0; i < this->size(); ++i) {
alloc.construct(dest++, std::move(*elem++));
}
this->elements = newdata;
this->first_free = dest;
this->cap = this->elements + n;
}
}
void StrVec::resize(rsize_t n) {
if (n <= this->capicity()) {
if (n > this->size()) {
auto beg = this->first_free;
for (size_t i = 0; i != n - (this->first_free - this->elements); ++i) {
alloc.construct(beg++);
}
this->first_free = beg;
}
else if (n < this->size()) {
auto beg = this->first_free;
for (; beg != this->first_free - n;) {
alloc.destroy(--beg);
}
this->first_free = beg;
}
}
}
std::string StrVec::show(std::vector<std::string>::size_type i) {
return *(elements + i);
首先,C4996這個問題,解決方案:
1、開啟project的屬性
2、開啟c/c++目錄
3、點選前處理器
4、在右側表單中編輯第一條“前處理器定義”
5、將報錯提示中的問題填入,我的時_SCL_SECURE_NO_WARNINGS
6、應用確認
或者在標頭檔案前加上:#pragma warning(disable:4996)
接著LNK2001 無法解析的外部符號 "private: static class std::allocator:
原因在於第26行,類內靜態變數未初始化,刪去static或者在類外定義
相關文章
- C++ VS單例模式報 錯誤 LNK2001 無法解析的外部符號 private: static class SingletonPattern錯誤C++單例模式符號
- BOOST應用 無法解析的外部符號 "void __cdecl boost::throw_exception(class std::exception const &)"符號Exception
- QT 自定義外掛問題 error: LNK2001: 無法解析的外部符號QTError符號
- 錯誤 1 error LNK2019: 無法解析的外部符號 "public: __thiscall Distance::Distance(int)" (??0Distance@@QAE@H@Z),該符...Error符號
- 無法解析外部符號:AdjustTokenPrivileges和GetAstncKetState符號AST
- VS2017無法解析得外部符號符號
- libtorch使用model.forward報std::runtime_error錯誤ForwardError
- std::sort 錯誤"Expression : invalid operator <"Express
- std::bind與std::ref, why and how
- `std::packaged_task`、`std::thread` 和 `std::async` 的區別與聯絡Packagethread
- 使用Boost庫報error C4996錯誤Error996
- 【譯】對Rust中的std::io::Error的研究RustError
- std::reserve和std::resize的區別
- (C++11/14/17學習筆記):std::atomic續、std::async與std::thread對比C++筆記thread
- std::vector 和 std::list 區別
- c++11:std::boolalpha、std::noboolalphaC++
- C++ 標準庫 std::set std::multiset swap()的使用C++
- php class中public,private,protected,static的區別,以及例項PHP
- 詭異!std::bind in std::bind 編譯失敗編譯
- IDEA出現Cannot resolve symbol “xxx”(無法解析符號)IdeaSymbol符號
- C++與Rust引用外部符號的比較C++Rust符號
- 關於vs2022出現"__std_max_element_4","__std_init_once_link_alternate_names_and_abort"兩個檔案連結錯誤
- 【C++併發實戰】(三) std::future和std::promiseC++Promise
- profile對比std::regex與boost::regex的效能
- std::count 函式函式
- ODRDMS_GOV_STDGo
- std::make_shared
- C++(std::vector)C++
- std::async的使用總結
- 解析C++連結錯誤:未定義引用和未解析符號的完整解決方案C++符號
- RMS與Std的差別:均方差與標準差
- java基本無法-識別符號Java符號
- 智慧指標思想實踐(std::unique_ptr, std::shared_ptr)指標
- std::unique_ptr使用incomplete type的報錯分析和解決
- std::function用法學習Function
- zend_std_read_property
- 理解 std::declval 和 decltype
- c++11:std::bindC++