malloc()으로 메모리를 할당할 때 C 문자열 초기화를 처리하는 방법은 무엇입니까?
C에서 malloc() 함수를 사용하려고 하면 std::string을 포함하는 구조를 생성하면 분할 오류가 발생할 수 있습니다. 이 문제를 이해하려면 다음 예를 고려하십시오.
struct example { std::string data; }; int main() { example *ex = (example *)malloc(sizeof(*ex)); // Allocating memory for the structure ex->data = "hello world"; // Assigning a value to the std::string member std::cout << ex->data << std::endl; // Printing the value of the std::string member }
이 코드를 실행할 때 분할 오류가 발생합니다. 이는 malloc()을 사용한 단순 메모리 할당이 구조 내의 std::string 객체를 제대로 초기화하지 않기 때문에 발생합니다.
해결 방법: new 연산자 사용
이 문제를 해결하려면 문제가 발생하면 std::string과 같은 중요하지 않은 생성자가 포함된 클래스나 구조로 작업할 때 malloc()을 사용하지 마세요. 대신 new 연산자를 활용하여 메모리를 할당하고 객체를 올바르게 구성하세요.
example *ex = new example; // Allocating memory and constructing the object ex->data = "hello world"; std::cout << ex->data << std::endl;
고급 기술: malloc()을 사용한 새로운 배치
또는 고집하는 경우 malloc()을 사용할 때 "placement new"라는 기술을 사용할 수 있습니다:
void *ex_raw = malloc(sizeof(example)); // Raw memory allocation example *ex = new(ex_raw) example; // Placement new to construct the object
그러나 단순성과 안전성을 위해 new 연산자를 사용하는 것이 좋습니다.
위 내용은 C 문자열 초기화와 함께 malloc()을 사용하면 분할 오류가 발생하는 이유는 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!