static const string FindSentinel() { return "<Dummy>"; }
static const string Void() { return "<Null>"; }
这是做什么的,以及如何使用这些功能?
答案 0 :(得分:4)
Is "<Dummy>" and "<Null>" a keyword?
没有。它们是普通的字符串文字。
调用代码可能为这些字符串赋予特殊含义(如果需要),但就C ++ 语言而言,它们只是任何旧的运行-of-the-mill字符串文字 - 这里没什么可看的,继续前进。