1

据我所知,从返回类型函数接收到的值必须存储在调用它的地方,否则它是错误的。请解释下面的代码如何正常工作。

#include <iostream>
#include <stdlib.h>
#include<assert.h>
//Returns a pointer to the heap memory location which  stores the duplicate string
char* StringCopy(char* string) 
{                              
    long length=strlen(string) +1;
    char *newString;
    newString=(char*)malloc(sizeof(char)*length);
    assert(newString!=NULL);
    strcpy(newString,string);
    return(newString);
}
int main(int argc, const char * argv[])
{
    char name[30]="Kunal Shrivastava";
    StringCopy(name);   /* There is no error even when there is no pointer which 
                           stores the returned pointer value from the function 
                           StringCopy */
    return 0;
}

我在 Xcode 中使用 c++。

谢谢你。

4

1 回答 1

6

在 C++ 中不需要使用函数调用(或任何其他表达式)的结果。

如果您想避免由于返回指向动态内存的哑指针并希望调用者记得释放它而可能导致的内存泄漏,请不要这样做。返回一个RAII类型,它将自动为您清理任何动态资源。在这种情况下,std::string将是理想的;甚至不需要编写函数,因为它有一个合适的构造函数。

一般来说,如果您正在编写 C++,请不要编写 C。

于 2013-08-19T15:31:41.243 回答