What is a fully qualified name?
问题 As far as I can tell, the term fully qualified isn't mentioned in the standard (e.g.), but I can recall "hearing" it many times online. What do people mean when they say a name is fully qualified? Does this count? A::f() or only this? ::A::f() And, if it is standard, which wording have I not found? 回答1: An identifier that uses the scope resolution operator is a qualified name as per [expr.prim.id.qual]. Otherwise it is unqualified. The standard doesn't define the meaning of fully qualified ,