-
What is the purpose of scope resolution operator in C++ 2024?
运算符
名称 仅限
Questioner:Isabella Stewart 2023-05-05 10:25:56
The most authoritative answer in 2024
-

-
Samuel Carter——Works at Twitter, Lives in San Francisco. Graduated from Stanford University with a degree in Computer Engineering.
Scope resolution operator :: (
C++ only) The :: (
scope resolution)
operator is used to qualify hidden names so that you can still use them. You can use the unary
scope operator if a namespace
scope or global
scope name is hidden by an explicit declaration of the same name in a block or class.
read more >>
About “运算符、名称、仅限”,people ask:
QuesHub is a place where questions meet answers, it is more authentic than Quora, but you still need to discern the answers provided by the respondents.