可能重复:
Why are unnamed namespaces used and what are their benefits?
namespace {
// EINTR sucks.
int close_no_eintr(int fd) {
int result;
do {
result = close(fd);
} while (result < 0 && errno == EINTR);
return result;
}
在上面的代码中,为什么第一行中名称空间后面没有名称?