[求助]可以用输入内容方式给字符串指针赋值吗??
char *content;
ifstream infile("D:\\coli_10k.txt");
if ( (content = new char[Length]) == NULL)
exit(0);
infile >> content;
delete[]content;
infile.close();
但老是有unhandled exception出现,怀疑不可以这样输入content,但不知为什么. 另外,为何改用字符串数组char content[100]就没问题呢?
谢谢各位指教!!!