try {
int* p = 0;
*p = 1;
} catch (...) {
cout << "null pointer." << endl;
}
I tried to catch the exception like this but it doesn't work,any help?
I tried to catch the exception like this but it doesn't work,any help? |
||||
|
There's no such thing as "null pointer exception" in C++. The only exceptions you can catch, is the exceptions explicitly thrown by Whatever else you seem to be looking for has noting to do with C++ language, but rather a feature of particular implementation. In Visual C++, for example, system/hardware exceptions can be "converted" into C++ exceptions, but there's a price attached to this non-standard functionality, which is not normally worth paying. |
|||||||||||||
|
|
You cannot. De-referencing a null-pointer is a system thing. On Linux, the OS raises signals in your application. Take a look at csignal to see how to handle signals. To "catch" one, you'd hook a function in that will be called in the case of Windows uses structured-exception-handling. You could use the instristics |
|||||||||||||||
|
|
Dereferencing a null (or pointer that's past-the-end of array, or a random invalid pointer) results in undefined behavior. There's no portable way to "catch" that. |
|||
|
|
|
C++ doesn't do pointer checking (although I suppose some implementations could). If you try to write to a null pointer it is most likely going to crash hard. It will not throw an exception. If you want to catch this you need to check the value of the pointer yourself before you try to write to it. |
|||||||||||
|
|
There is a very easy way to catch any kind of exception (division by zero, access violation, etc.) in Visual Studio using try -> catch (...) block. A minor project tweaking is enough. Just enable /EHa option in project settings. See Project Properties -> C/C++ -> Code Generation -> Modify the Enable C++ Exceptions to "Yes With SEH Exceptions". That's it! See details here: http://msdn.microsoft.com/en-us/library/1deeycx5(v=vs.80).aspx |
|||
|
|
|
Generally you can't. Even if you could it would be like trying to put a band aid on a submarine that has sprung a leak. A crippled application can do far more damage than one that has crashed. My advise here would be to let it crash then fix why it crashed. Rinse. Repeat. |
|||
|
|
|
As others have said, you can't do this in C++. If I can make a broader point: even in a language that allows you to catch it, the better action is to not touch null pointers. Catching an error when it's already blown up in your face, then deciding to just move on like it didn't happen, is not a good coding strategy. Things like null pointer dereference, stack overflow, etc., should be seen as catastrophic events and defensively avoided, even if your language allows you to react to it differently. |
|||
|
|
|
There is no platform independent way to do this. Under Windows/MSVC++ you can use __try/__except But I wouldn't recommend doing it anyway. You almost certainly cannot recover correctly from a segmentation fault. |
|||||||
|
catch(...)will catch AV if you compile withcl.exe /EHa. However, if you ever do this, an angry C++ god will immediately strike you down with lightning on the spot, so forget I told you that. – Pavel Minaev Dec 1 '09 at 3:08