[求助]受保护的内存??实在想不通
这段代码运行时刻出现错误。错误提示说:尝试读取或写入受保护的内存。想了好久,也没搞清楚。main()中pstr受保护?不懂,忘各位指点,不胜感激!
原代码如下:
#include <iostream>
#include <string>
using namespace std;
class cmyclass {
public:
cmyclass(const char* pstr){
m_pstr=new char [strlen(pstr)+1];
strcpy(m_pstr,pstr);
}
void getvalue(char *pstr)const{
pstr=new char[strlen(m_pstr+1)];
strcpy(pstr,m_pstr);
// A: cout<<pstr<<endl;
}
private:
char *m_pstr;
};
void main()
{
cmyclass myobj("This is my class");
char *pstr=0;
myobj.getvalue(pstr);
// 这句有问题:
cout<<pstr<<endl; //但把它放在getvalue()函数体内就可以了。为什么?
delete[]pstr;
}