std :: vector <> :: push_back在Arduino上导致链接错误

时间:2019-03-07 14:30:44

标签: c++ arduino stdvector

我正在使用此功能将一个向量复制到另一个向量的末端:

_ignore

这会在Arduino IDE中引发编译错误:

template <typename T, typename U>
void addVectorToVector(std::vector<T>* oldVector, std::vector<U> input){
  for(uint8_t i = 0; i < Input(size); i++){
    T inputVar = (T) Input[i];
    oldVector->push_back(inputVar);
  }
return;
}

我可以断定该错误消失了

C:\Users\ehle_ta\AppData\Local\Temp\arduino_build_330682\sketch\main.ino.cpp.o: In function `std::vector<unsigned char, std::allocator<unsigned char> >::_M_check_len(unsigned int, char const*) const':

c:\program files (x86)\arduino\hardware\tools\arm\arm-none-eabi\include\c++\5.4.1\bits/stl_vector.h:1425: undefined reference to `std::__throw_length_error(char const*)'

collect2.exe: error: ld returned 1 exit status

但我不明白为什么会发生此链接错误。

编辑:

可以通过编译以下代码来触发错误:

oldVector->push_back(inputVar);

我的vector :: push_back的实现/使用过程中是否出现错误,或者我使用的std :: vector类不是标准C ++ 11并因此导致了问题?

1 个答案:

答案 0 :(得分:0)

尝试一下

SELECT *
FROM skills
WHERE EXISTS (
    SELECT 1
    FROM OPENJSON('["Sports", "Life", "Relationship"]', '$') AS j
    WHERE skills.description LIKE '%' + j.value + '%'
)