让我们有一个Foo
从字符串定义转换构造函数的类。根据字符串的内容,此构造函数可以成功(创建 的实例Foo
)或失败(抛出异常):
class Foo
{
public:
Foo(const char* s)
{
if (<format of s is valid>)
<create Foo, based on the contents of s>;
else
<throw an exception>;
}
[...]
};
我们还operator==()
用于比较 aFoo
和字符串:
bool operator==(const Foo& foo1, const char* s)
{
// s is converted to a Foo, after which the two instances of Foo are compared
}
客户端代码可能最常使用有效的字符串文字调用比较运算符:
if (myFoo == "<some valid string literal for building a Foo>") // A - normal case
[...]
但有时它可能会使用无效的字符串文字调用比较运算符(程序员的错误):
if (myFoo == "<some invalid string literal for building a Foo>") // B - abnormal case, throws an exception
[...]
有没有办法在编译时而不是运行时检测案例 B?(我希望有,但害怕没有......)
注意:可以检查字符串的有效性,例如,使用正则表达式。