对象销毁问题

每个函数调用完以后 不用销毁临时创建的对象吗?  比如*currentNode

完美丶沉睡
浏览 1294回答 2
2回答

完美丶沉睡

bool PriorElem(Node *pCurrentNode,Node *pPreNode) { Node *currentNode = m_pList;  Node *tempNode = NULL;  while(currentNode->next!=NULL)     {         currentNode=currentNode->next;          if (currentNode->data == pCurrentNode->data)             {                  if (tempNode == m_pList)                      {                          return false;                      }                  pPreNode->data=tempNode->data;                  return true;              }     }  return false; }这是  数据结构 链表 里找前驱的函数....这里的 *currentNode 不需要销毁么?

onemoo

你把完整的代码写一下吧
打开App,查看更多内容
随时随地看视频慕课网APP