如何将 std::string 变量传递到函数中

发布于 2024-09-25 04:31:55 字数 577 浏览 4 评论 0原文

我有一个 C++ 方法,它接受一个变量,方法签名如下:

DLL returnObject** getObject( const std::string folder = "" );

我尝试传入:

const std::string myString = "something";

但出现以下错误:

No matching function call to ... getObject( std::string&);

我这里有几个问题。

  1. 如何传递没有 & 的普通 std::string
  2. 这看起来该值是可选的 folder = "" 是吗?如果是这样,如何传递可选参数?

I have a C++ method that takes one variable the method signature is like this:

DLL returnObject** getObject( const std::string folder = "" );

I tried passing in:

const std::string myString = "something";

but I get the following error:

No matching function call to ... getObject( std::string&);

I have a couple questions here.

  1. How do I pass in a normal std::string without the &
  2. This looks like the value is optional folder = "" is it? And if so how do you pass an optional parameter?

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

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

发布评论

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

评论(2

水溶 2024-10-02 04:31:55

这个小示例按预期工作:

#include <stdio.h>
#include <string>

class foo {
public:
    void getObject( const std::string folder = "" );
};

int main ()
{
    const std::string myString = "something";

    foo* pFoo = new foo;

    pFoo->getObject( myString);
    pFoo->getObject();    // call using default parameter

    return 0;
}


void foo::getObject( const std::string folder)
{
    printf( "folder is: \"%s\"\n", folder.c_str());
}

您可能想发布一个类似的小示例来显示您的问题。

This little example works as expected:

#include <stdio.h>
#include <string>

class foo {
public:
    void getObject( const std::string folder = "" );
};

int main ()
{
    const std::string myString = "something";

    foo* pFoo = new foo;

    pFoo->getObject( myString);
    pFoo->getObject();    // call using default parameter

    return 0;
}


void foo::getObject( const std::string folder)
{
    printf( "folder is: \"%s\"\n", folder.c_str());
}

You might want to post a similarly small example that shows your problem.

不离久伴 2024-10-02 04:31:55

这对我来说编译得很好,将其与您正在做的事情进行比较:

#include <string>

void myFunc(const std::string _str)
{
}

int main()
{
    const std::string str = "hello world";
    myFunc(str);
    return 0;
}

This compiled fine for me, compare it to what you're doing:

#include <string>

void myFunc(const std::string _str)
{
}

int main()
{
    const std::string str = "hello world";
    myFunc(str);
    return 0;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文