是否有一个null uuid_t
常量或一个可以在POSIX中返回null uuid_t
的函数?
我有一个函数应该在失败时返回null uuid_t
,因此我需要生成/返回null uuid_t
...
uuid_t getComponent(const string& name)
{
if (components.find(name) == components.end())
// return null uuid_t
return components[name];
}
答案 0 :(得分:0)