这是我的 C++ 代码的主要功能。
int main() {
vector<string> a;
any x;
x="Hello";
a.insert(a.begin(),any_cast<string>(x));
cout<<a[0]<<endl;
}
这给了我这样的错误:
terminate called after throwing an instance of 'std::bad_any_cast'
what(): bad any_cast
Aborted (core dumped)