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
- 關於VS報無法解析外部符號的錯誤符號
- QT 自定義外掛問題 error: LNK2001: 無法解析的外部符號QTError符號
- 無法解析的外部符號符號
- c++基礎知識(九)連線時出現錯誤 error LNK2001: 無法解析的外部符號(轉)C++Error符號
- C++中std::allocator的使用C++
- 錯誤 1 error LNK2019: 無法解析的外部符號 _WinMain@16,該符號在函式 ___tmainCRTStartup 中被引用Error符號AI函式
- 無法解析外部符號:AdjustTokenPrivileges和GetAstncKetState符號AST
- error LNK2019: 無法解析的外部符號 __imp___CrtDbgReportWError符號
- VS2017無法解析得外部符號符號
- std::sort 錯誤"Expression : invalid operator <"Express
- libtorch使用model.forward報std::runtime_error錯誤ForwardError
- 錯誤 1 error LNK2019: 無法解析的外部符號 "public: __thiscall Distance::Distance(int)" (??0Distance@@QAE@H@Z),該符...Error符號
- `std::packaged_task`、`std::thread` 和 `std::async` 的區別與聯絡Packagethread
- std::numeric_limits::max() std::numeric_limits::min()編譯錯誤MIT編譯
- std::reserve和std::resize的區別
- error C2061: 語法錯誤: 識別符號“MonsterSprite”Error符號
- 使用Boost庫報error C4996錯誤Error996
- c++11:std::boolalpha、std::noboolalphaC++
- std::vector 和 std::list 區別
- 【譯】對Rust中的std::io::Error的研究RustError
- (C++11/14/17學習筆記):std::atomic續、std::async與std::thread對比C++筆記thread
- C++ 標準庫 std::set std::multiset swap()的使用C++
- 詭異!std::bind in std::bind 編譯失敗編譯
- C++11 std::bind std::function 高階用法C++Function
- shell報錯:未預期的符號***附近有語法錯誤符號
- error: const std::string message = "Hello" + ", world" + exclam;Error
- php class中public,private,protected,static的區別,以及例項PHP
- 【C++併發實戰】(三) std::future和std::promiseC++Promise
- ODRDMS_GOV_STDGo
- std::count 函式函式
- C++(std::vector)C++
- 關於有符號與無符號的位元組符號
- std::async的使用總結
- C++與Rust引用外部符號的比較C++Rust符號
- Java中”失效”的private修飾符解析Java
- c++11:std::bindC++