有一种简单的方法可以在c ++中抛出自定义空指针异常吗?
我的想法是重新定义this
指针,但它有3个问题:
this
会引发标准的Acces Violation Exception Visual Studio将此显示为InteliSense
错误(可编译)(不知道其他编译器做了什么)
#include <iostream>
#define this (this != nullptr ? (*this) : throw "NullPointerException")
class Obj
{
public:
int x;
void Add(const Obj& obj)
{
this.x += obj.x; // throws "NullPointerException"
//x = obj.x; // throws Access Violation Exception
}
};
void main()
{
Obj *o = new Obj();
Obj *o2 = nullptr;
try
{
(*o2).Add(*o);
}
catch (char *exception)
{
std::cout << exception;
}
getchar();
}
答案 0 :(得分:6)
由于this
永远不可能nullptr
,因此编制者可以将this != nullptr
视为与true
相同。你从根本上想要做的事情没有意义。您不能使用异常来捕获未定义的行为。 this
可以是nullptr
的唯一方法是通过未定义的行为。
Obj *o2 = nullptr;
try
{
(*o2).Add(*o);
}
取消引用nullptr
是未定义的行为(8.3.2)。这是试图使用异常来捕获未定义的行为。从根本上说,你不能用C ++做到这一点。
由于一个明显的原因,这是未定义的,请考虑这一点:
class Foo
{
public:
Foo { ; }
virtual void func() = 0;
};
class Bar : public Foo
{
public:
Bar() { ; }
virtual void func() { some_code() }
};
class Baz : public foo
{
public:
Baz() { ; }
virtual void func() { some_other_code(); }
}
...
Foo * j = nullptr;
j->func(); // Uh oh, which func?