I have a method:
void Foo::Bar(const std::string &str)
{
printf("%d", str.length());
}
and it works seamlessly when I do
foo.Bar("hello");
I thought "hello" was a const char *, not a std::string?
|
I have a method:
and it works seamlessly when I do
I thought |
||||
|
|
|
There are two ways user-defined types can be implicitly converted:
Any constructor that takes a single parameter and does not use the keyword "explicit" defines an implicit conversion (from the type of the parameter, to the type of the object being constructed). The standard string class intentionally does not use "explicit" in order to provide the convenience of this conversion. |
|||
|
|
|
Because std::string has a constructor that takes a |
|||||
|
|
Technically it's a |
|||
|
|
|
somewhat related to your question: if there is a time in C++ where you *explicit*ly don't want the compiler to change types for you like this, when a compatible constructor exists, you use the keyword "explicit" before the constructor. Then it will give you a compiler error. You can only do this with the types you create, however. Not with STL types like string. |
|||
|
|
|
Because there is an ?implicit? conversion from |
|||
|
|
|
Your string literal is a The name of it decays to Then an implicit conversion is performed, because:
|
|||
|
|