RE: Console application termination following exception thrown in constructor (VS 2005)
Hi Paul,
From your description, I understand that:
You used a third-party class in your class C constructor, however you
encountered the error dialogue box "Please tell Microsoft about this
problem.". Now you want the dialogue box disappeared and only leaving the
message "The application has requested..." there.
If I have misunderstood, please let me know.
First I think that error reporting service has been enabled on your
computer. You can disable it by the following:
Click Start, click Run..., enter "services.msc", and disable the "Error
Reporting Service" in the Services list.
Also, I would like your checking if you had caught all the exceptions or
the correct exception from the third-party class in the constructor.
Per my test, it should not cause the failure of the instance construction
if the exceptions were correctly caught in the constructor.
The following is my test code. I would like to attach my test code here for
your reference:
/*1. I defined an Exception class named ExpSet */
class ExpSet
{
public:
ExpSet(const char* pS){
memcpy(m_str,pS,100);
}
const char* getMessage() const{
return m_str;
}
private:
char m_str[100];
};
/*2. A global function which directly throw an exception of ExpSet instance
*/
void Set()
{
throw ExpSet("Test Exception");
};
/*3. Define a class C which calls the global function Set in its
constructor */
class C
{
public:
C()
{
try
{
Set();
}
catch(const ExpSet& e)
{
std::cerr<<e.getMessage();
}
std::cout<<"\nPlease input a character:";
std::cin>>m_chr;
}
public:
char& getInput()
{
return m_chr;
}
void waitForExit()
{
char end;
std::cout<<"\nPlease press a character to exit...\n";
std::cin>>end;
}
private:
char m_chr;
};
/*4. Test in the main function*/
void _tmain(int argc, _TCHAR* argv[])
{
C c;
std::cout<< "The input is:" << c.getInput();
c.waitForExit();
}
Hope this helps.
If you have any other questions or concerns, please feel free to let us
know.
Sincerely yours,
Charles Wang
Microsoft Online Community Support
======================================================
When responding to posts, please "Reply to Group" via
your newsreader so that others may learn and benefit
from this issue.
======================================================
This posting is provided "AS IS" with no warranties, and confers no rights.
======================================================