我想在C中调用以下代码,我无法更改:
void getAge(char *name) { // do something }
当我用getAge(“hello”);来调用它时,它有以下警告:
warning: deprecated conversion from string constant to 'char*'
但C代码中没有警告.有什么区别,如何更改呼叫以避免C中的警告?
解决方法
the function […] can not be changed
然后在函数周围写一个包装器并复制字符串 – 或者,如果你觉得幸运(=你知道字符串不会在原始函数中被修改),显式地抛弃了const-ness:
void getAge(char const* name) { the_namespace::getAge(const_cast<char*>(name)); }
如果您不确定该函数是否修改了它的参数,请使用类似下面的内容 – 但是,如果是这种情况,则使用字符串文字(getAge(“hello”))调用该函数无论如何都是无效的.
void getAge(char const* name) { std::string buffer(name); the_namespace::getAge(&buffer[0]); }