2
votes
4answers
352 views
C++ deprecated conversion from string constant to ‘char*’
I have a class with a private char str[256];
and for it i have an explicit constructor,
explicit myClass(const char *func)
{
strcpy(str,func);
}
i call it as,
myClass obj("example");
when i …
3
votes
2answers
243 views
If I use explicit constructor, do I need to put the keyword in both .h and .cpp files?
Actually my question is all in the title.
Anyway:
I have a class and I use explicit constructor:
.h
class MyClass
{
public:
explicit MyClass(const string& s): query(s) {}
private:
…
