所以我尝试添加从名为
的过程返回的动态分配的char*
GetFileInputFromUser();
我为过程中的返回变量动态分配内存。
char* pstrReturnValue;
// Prime the loop
cout << "please enter a file location on your local machine (type 1 for default location) ";
cin >> strFileInputFromUser;
// Default location?
if (*(strFileInputFromUser + intIndex) == '1')
{
// yes, Get the length
intLength = strlen(strDefaultFileLocation);
// Allocate memory
pstrReturnValue = new char[intLength];
// copy default location in
for (intIndex = 0; intIndex <= intLength; intIndex += 1)
{
*(pstrReturnValue + intIndex) = *(strDefaultFileLocation + intIndex);
}
return pstrReturnValue;
我需要的是将返回变量添加到另一个字符数组(动态分配)。
void main()
{
bool blnResult = false;
ifstream ifsDataFile;
udtNodeType* pudtHeadNode = 0;
udtNodeType* pudtCurrentNode = 0;
udtNodeType* pudtNextNode = 0;
char* strFile;
udtNodeType udtReturnNode;
// Get the file path
strFile = GetFileInputFromUser();
blnResult = OpenFile(strFile, ifsDataFile);
// was it successful?
if (blnResult == true)
{
// Yes
// populate the list and, return the top node
udtReturnNode = *PopulateList(pudtNextNode, pudtCurrentNode, pudtHeadNode, &ifsDataFile);
// All done, close the file
ifsDataFile.close();
delete[] strFile;
// Delete the list
DeleteList(pudtNextNode, pudtCurrentNode, pudtHeadNode);
// Delete proof
PrintList(pudtNextNode, pudtCurrentNode, pudtHeadNode);
}
system("pause");
}
这是一个练习,根据要求,GetFileInputFromUser()
必须是char*
它必须返回该指针,我必须在我处理LinkedList之前删除该指针。我的事情就是这个,我知道如何动态分配内存,我知道如何删除所述内存,我的问题是我不能只为静态分配的char[]
分配一个值,我无法循环通过返回值来分配它因为我必须能够将返回值变成某种东西。
我已经尝试将char* GetFileInputFromUser()
更改为char& GetFileInputFromUser()
,希望我可以在内存中的位置获取地址,看看我是否可以使用它,以某种方式取消引用返回值。
如果你注释掉delete[] strFile
并运行它,它运行正常,但我正在泄漏记忆,这在我看来并不好。我知道有办法做到这一点,但谷歌没有帮助,我从昨晚1点开始就一直坚持这个。
谢谢大家的帮助。
答案 0 :(得分:0)
如果我理解正确,您想要将一个字符串添加到另一个字符串。正确?如果是这样,您可以使用 strcat()。
答案 1 :(得分:0)
感谢Askarali,你让我沿着正确的道路前进,下面的代码是获得所需结果而不需要获得损坏的堆异常所需的代码。谢谢
void main()
{
char* strFile;
strFile = new char[50];
// Get the file path
strcpy(strFile, GetFileInputFromUser());
}