使用 Malloc 分配包含字符串的结构
尝试使用 malloc() 管理包含 std::string 成员的结构的内存时,会出现段错误可能会发生。这是因为 malloc() 提供原始内存分配而不是构造对象。
使用 new 进行对象分配
使用 std::string 为结构正确分配内存成员,使用 new 而不是 malloc()。 new 会自动在分配的内存中构造对象。
示例:
#include <iostream> #include <string> struct example { std::string data; }; int main() { example *ex = new example; // Allocate memory using 'new' ex->data = "hello world"; std::cout << ex->data << std::endl; delete ex; // Release allocated memory when done }
原始内存管理的放置 new
如果已经使用malloc()分配了内存,则可以使用placement new来构造该对象
示例:
void *ex_raw = malloc(sizeof(example)); example *ex = new(ex_raw) example; // Construct the object in allocated memory using placement 'new'
但是,在对象构造中,直接使用 new 通常优于放置 new。
以上是如何为C中包含字符串的结构正确分配内存?的详细内容。更多信息请关注PHP中文网其他相关文章!