程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程解疑 >> c++- 求大神幫助,delete報錯

c++- 求大神幫助,delete報錯

編輯:編程解疑
求大神幫助,delete報錯

程序在delete那句中斷
源代碼:
#include< iostream >
#include< vector >
using std::vector;
#include< string >
using namespace std;

char* tran(string str)
{
char* t = new char[strlen(str.c_str()) + 1];
char* p = t;
strcpy_s(p,strlen(str.c_str())+1,str.c_str());
while (*p != 0)
{
if (*p >= 'a'&&*p <= 'z')
* (p++) -= 32;
else
++p;
}
p[strlen(str.c_str())] = 0;
return t;
}
void main()
{
vector< string > v;
string s;
char * t;
while (cin >> s&&*(s.c_str()) != '#')
v.push_back(s);
vector< string >::iterator iter = v.begin();
t = tran(*iter);
int len = strlen(t);

delete[] t;////////出錯////////////////

system("pause");

}

最佳回答:


為何你會把 new出來的東西賦給一個char.....

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved