boost::split 参数不匹配

发布于 2024-12-22 14:13:57 字数 448 浏览 2 评论 0原文

我试图将 AnsiString(someStr).c_str() 传递给 boost::split() 第二个参数,但它拒绝显示参数不匹配!

这是代码片段

vector<std::string> sVec;
boost::split(sVec,AnsiString(response).c_str(),boost::is_any_of(" "));//err in this line
ShowMessage(sVec[1].c_str());

然而

boost::split(sVec,"这是一个测试",boost::is_any_of(" "));

效果很好!

我将 AnsiString 转换为 c 字符串类型正确吗???

I am trying to pass AnsiString(someStr).c_str() to boost::split() second argument but it denies showing argument mismatch!!

here is the code snippet

vector<std::string> sVec;
boost::split(sVec,AnsiString(response).c_str(),boost::is_any_of(" "));//err in this line
ShowMessage(sVec[1].c_str());

however

boost::split(sVec,"This is a test",boost::is_any_of(" "));

works well!

Am I doing right converting AnsiString to c string type???

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

甜扑 2024-12-29 14:13:57

由于 sVecvector 而不是 vector,因此第二个参数传递给 split() 必须以某种方式转换为 std::string 实例。

std::string 类中有一个隐式构造函数,可以透明地从 const char * 创建实例(这就是第二个示例成功的原因),但是 AnsiString::c_str() 返回一个 char *,而不是一个 const char *,所以这个构造函数不适用。

自己执行转换应该可以解决您的问题:

boost::split(sVec, (const char *) AnsiString(response).c_str(),
    boost::is_any_of(" "));

或者更明确地说:

boost::split(sVec, std::string((const char *) AnsiString(response).c_str()),
    boost::is_any_of(" "));

Since sVec is a vector<std::string> and not a vector<char *>, the second argument passed to split() has to be somehow converted into a std::string instance.

There is an implicit constructor in the std::string class that can transparently create an instance from a const char * (which is why your second example succeeds), but AnsiString::c_str() returns a char *, not a const char *, so this constructor does not apply.

Performing the conversion yourself should solve your problem:

boost::split(sVec, (const char *) AnsiString(response).c_str(),
    boost::is_any_of(" "));

Or, more explicitly:

boost::split(sVec, std::string((const char *) AnsiString(response).c_str()),
    boost::is_any_of(" "));
黑色毁心梦 2024-12-29 14:13:57

我这样做是因为 boost::split(sVec, (const char *) AnsiString(response).c_str(),
boost::is_any_of(" "));
给出错误(不幸的是)

AnsiString response="This is a test";
    vector<std::string> sVec;
    const char * cStr=AnsiString(response).c_str();
    boost::split(sVec, cStr,boost::is_any_of(" "));

    for (int i = 0; i < sVec.size(); i++) {
            ShowMessage(sVec[i].c_str());
    }

I did it in this way since boost::split(sVec, (const char *) AnsiString(response).c_str(),
boost::is_any_of(" "));
gives error (unfortunately)

AnsiString response="This is a test";
    vector<std::string> sVec;
    const char * cStr=AnsiString(response).c_str();
    boost::split(sVec, cStr,boost::is_any_of(" "));

    for (int i = 0; i < sVec.size(); i++) {
            ShowMessage(sVec[i].c_str());
    }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文