Brace yourselves! C++新手問題傳入:C++ - 轉換std :: basic_string <char>
有人可以向我解釋爲什麼會發生此錯誤,我應該如何解決它?
std::vector<std::string> options = vectorOGROptions_.get()
我想options
var當成std::vector<std::string>
但似乎我的vectorOGROptions屬性返回不同的類型..
error: conversion from ‘const std::basic_string<char>’ to non-scalar type ‘std::vector<std::basic_string<char> >’ requested
假設你正在使用C++ 03,而不是C++ 11,做'的std ::矢量選項(1,vectorOGROptions_.get());'。 –
legends2k