lifuguan 2016-04-28 08:27 采纳率: 26.7%
浏览 1654
已采纳

C++中delete操作符问题(为什么没有new也用delete)

为什么没有new也用delete

 // Soln5_5.cpp
#include <iostream>
#include <cstring>

char* parse(const char* str)
{
  static char* pStr{};
  static size_t len{};
  static size_t start{};
  size_t pos{};
  char* pReturn{};

  // First time through, save the string
  if (str)
  {
     delete pStr;                              // in case it was allocated
     len = strlen(str);
     pStr = new char[len+1];
     strcpy_s(pStr, len+1, str);
  }

  if (start >= len)
     return nullptr;

  // Walk the string from 'start' till we find a blank or the end
  for (pos = start; pStr[pos] != ' ' && pStr[pos] != '\0'; ++pos);

  // Copy the string if we've a word to return, otherwise return NULL
  if (pos != start)
  {
    pReturn = new char[pos - start + 2];
    size_t i{};
    for (size_t j{ start }; j < pos; ++i, ++j)
      pReturn[i] = pStr[j];
      pReturn[i] = '\0';
      start = pos + 1;
      return pReturn;
   }
   else
     return nullptr;
}

int main()
{
  char s1[] {"seventy-one fruit balls, please Doris"};
  std::cout << "string is '" << s1 << "'\n\nParsing...\n";
  char* p{ parse(s1) };

   while (p)
   {
     std::cout << p << std::endl;
      delete[] p;//为什么没有new也用delete
      p = parse(nullptr);
   }
}

  • 写回答

2条回答 默认 最新

  • lambda-fk 2016-04-29 02:46
    关注

    要相信科学

    delete只能删除你自己new 出来的那个地址

    pReturn = new char[pos - start + 2];

    这个返回的地址是你new出来的哦

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 树莓派与pix飞控通信
  • ¥15 自动转发微信群信息到另外一个微信群
  • ¥15 outlook无法配置成功
  • ¥30 这是哪个作者做的宝宝起名网站
  • ¥60 版本过低apk如何修改可以兼容新的安卓系统
  • ¥25 由IPR导致的DRIVER_POWER_STATE_FAILURE蓝屏
  • ¥50 有数据,怎么建立模型求影响全要素生产率的因素
  • ¥50 有数据,怎么用matlab求全要素生产率
  • ¥15 TI的insta-spin例程
  • ¥15 完成下列问题完成下列问题