我有一个接受std::string&
:
void f(std::string& s) { ... }
我有一个const char*
,它应该是该函数的输入参数。这有效:
const char* s1 = "test";
std::string s2{s};
f(s2);
这不是:
const char* s1 = "test";
f({s1});
为什么这不可能?有趣的是,CLion IDE并没有抱怨,但编译器是:
no known conversion for argument 1 from ‘<brace-enclosed initializer list>’ to ‘std::basic_string<char>&’
答案 0 :(得分:4)
这与从std::string
构建char const*
无关。
f
期望一个字符串的左值,并通过在现场创建一个临时实例,你提供一个rvalue,它不能绑定到非const左值引用。 f(string{})
同样无效。
答案 1 :(得分:1)
您的函数接收到非const引用,并且您正在传递临时对象,该对象需要副本或const引用参数。两个解决方案,创建另一个函数来接收对象作为右值引用并在
中调用另一个重载void f(const std::string& s) { ... }
允许临时对象作为参数,或者更改函数定义以接收任何对象,但作为常量引用
<H1>Exercice 2</H1>
<form method="POST">
<label for"code" >Number :</label>
<input id="code" name="code" type="number" />
<label for"title">Title :</label>
<input id="title" name="title" type="text" />
<label for"author" >Author :</label>
<input id="author" name="author" type="text" />
<button type="input" type="submit">Ok</button>
答案 2 :(得分:0)
一个选项是将您的函数更改为按值获取字符串,而不是通过引用。然后它会工作。在任何情况下,在C ++ 11中,有时它最好通过值传递,而不是通过引用。