Copy of const char * using std::string constructor(使用 std::string 构造函数复制 const char *)
问题描述
这段代码可以吗?
void SomeClass :: foo(const char * _name) {
//name is of type const char *
name = std::string(_name).c_str();
}
看起来它正在工作,但我不确定它是否正常
it looks like it is working, but iam not sure if it is ok
我应该做一个老式的 strcpy 吗?
should i do an old school strcpy ?
推荐答案
没关系,因为它可以编译并且不会导致未定义的行为.
It's ok since it compiles and doesn't cause undefined behavior.
不没问题,因为 name 在语句执行完成后指向无效内存.
It's not ok since name points to an invalid memory after the statement completes execution.
name = std::string(_name).c_str();
在这个语句的最后,临时的 std::string 被销毁,它释放了 c_str() 的内存.
At the end of this statement the temporary std::string is destroyed and it frees the memory of c_str().
我应该做一个老式的 strcpy 吗?
should i do an old school strcpy ?
不,只需将名称更改为 std::string:
No, just change name to be std::string:
void SomeClass :: foo(const char * _name) {
//name is of type std::string
name = _name;
}
这篇关于使用 std::string 构造函数复制 const char *的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:使用 std::string 构造函数复制 const char *
基础教程推荐
- 非静态 const 成员,不能使用默认赋值运算符 2022-10-09
- 通过引用传递 C++ 迭代器有什么问题? 2022-01-01
- 初始化列表*参数*评估顺序 2021-01-01
- CString 到 char* 2021-01-01
- 为什么 typeid.name() 使用 GCC 返回奇怪的字符以及如 2022-09-16
- 如果我为无符号变量分配负值会发生什么? 2022-01-01
- 为什么 RegOpenKeyEx() 在 Vista 64 位上返回错误代码 2021-01-01
- 我应该对 C++ 中的成员变量和函数参数使用相同的名称吗? 2021-01-01
- 为什么派生模板类不能访问基模板类的标识符? 2021-01-01
- GDB 显示调用堆栈上函数地址的当前编译二进制文 2022-09-05
