H
huhu13
Unregistered / Unconfirmed
GUEST, unregistred user!
如下类
class Error : public ErrorOld
{
public:
Error(const char* theWhere,const char* theWhy):why(theWhy),where(theWhere) //这该怎么改写呢?
{
}
...
...
private:
const string why
const string where
}
class Error : public ErrorOld
{
public:
Error(const char* theWhere,const char* theWhy):why(theWhy),where(theWhere) //这该怎么改写呢?
{
}
...
...
private:
const string why
const string where
}