What is a fully qualified name?Is there a context where the expression `a.b::c` makes sense?What is the difference between #include <filename> and #include “filename”?What are the differences between a pointer variable and a reference variable in C++?What does the explicit keyword mean?What is the “-->” operator in C++?What is the copy-and-swap idiom?What is The Rule of Three?What are the basic rules and idioms for operator overloading?C++11 introduced a standardized memory model. What does it mean? And how is it going to affect C++ programming?Image Processing: Algorithm Improvement for 'Coca-Cola Can' RecognitionWhat are the new features in C++17?

Why not invest in precious metals?

Is it safe to change the harddrive power feature so that it never turns off?

Has there been a multiethnic Star Trek character?

US doctor working in Tripoli wants me to open online account

How to use memset in c++?

Someone whose aspirations exceed abilities or means

Is it possible to have 2 different but equal size real number sets that have the same mean and standard deviation?

How to hide rifle during medieval town entrance inspection?

Is it legal for a bar bouncer to confiscate a fake ID

Writing an augmented sixth chord on the flattened supertonic

Minimum distance between two connectors in a high voltage PCB design

Longest bridge/tunnel that can be cycled over/through?

Why does logistic function use e rather than 2?

Why did Sanhedrin deal with who has a share in Olam Habah?

With Ubuntu 18.04, how can I have a hot corner that locks the computer?

How come the nude protesters were not arrested?

Wooden cooking layout

Can I utilise a baking stone to make crepes?

How can I get an unreasonable manager to approve time off?

Active low-pass filters --- good to what frequencies?

Warning about needing "authorization" when booking ticket

Happy with 18.04, except for suspend behaviour. Should I update to 18.10>>>19.04

Is using 'echo' to display attacker-controlled data on the terminal dangerous?

What is the color of artificial intelligence?



What is a fully qualified name?


Is there a context where the expression `a.b::c` makes sense?What is the difference between #include <filename> and #include “filename”?What are the differences between a pointer variable and a reference variable in C++?What does the explicit keyword mean?What is the “-->” operator in C++?What is the copy-and-swap idiom?What is The Rule of Three?What are the basic rules and idioms for operator overloading?C++11 introduced a standardized memory model. What does it mean? And how is it going to affect C++ programming?Image Processing: Algorithm Improvement for 'Coca-Cola Can' RecognitionWhat are the new features in C++17?






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








35















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?










share|improve this question



















  • 7





    With the injected class name one can really qualify stuff. ::A::A::A::A::f(). Not sure if it's "fully" though.

    – StoryTeller
    May 23 at 10:42






  • 9





    @StoryTeller We should petition to add that term to the standard! really-really-really-qualified-id etc

    – Lightness Races in Orbit
    May 23 at 11:24











  • What does the language-lawyer tag mean?

    – Evorlor
    May 23 at 21:38






  • 5





    @Evorlor Hover your mouse over it (and/or click)

    – Lightness Races in Orbit
    May 23 at 23:07

















35















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?










share|improve this question



















  • 7





    With the injected class name one can really qualify stuff. ::A::A::A::A::f(). Not sure if it's "fully" though.

    – StoryTeller
    May 23 at 10:42






  • 9





    @StoryTeller We should petition to add that term to the standard! really-really-really-qualified-id etc

    – Lightness Races in Orbit
    May 23 at 11:24











  • What does the language-lawyer tag mean?

    – Evorlor
    May 23 at 21:38






  • 5





    @Evorlor Hover your mouse over it (and/or click)

    – Lightness Races in Orbit
    May 23 at 23:07













35












35








35


0






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?










share|improve this question
















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?







c++ language-lawyer c++17






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited May 23 at 12:04









dfri

37k463105




37k463105










asked May 23 at 10:35









Lightness Races in OrbitLightness Races in Orbit

302k56490844




302k56490844







  • 7





    With the injected class name one can really qualify stuff. ::A::A::A::A::f(). Not sure if it's "fully" though.

    – StoryTeller
    May 23 at 10:42






  • 9





    @StoryTeller We should petition to add that term to the standard! really-really-really-qualified-id etc

    – Lightness Races in Orbit
    May 23 at 11:24











  • What does the language-lawyer tag mean?

    – Evorlor
    May 23 at 21:38






  • 5





    @Evorlor Hover your mouse over it (and/or click)

    – Lightness Races in Orbit
    May 23 at 23:07












  • 7





    With the injected class name one can really qualify stuff. ::A::A::A::A::f(). Not sure if it's "fully" though.

    – StoryTeller
    May 23 at 10:42






  • 9





    @StoryTeller We should petition to add that term to the standard! really-really-really-qualified-id etc

    – Lightness Races in Orbit
    May 23 at 11:24











  • What does the language-lawyer tag mean?

    – Evorlor
    May 23 at 21:38






  • 5





    @Evorlor Hover your mouse over it (and/or click)

    – Lightness Races in Orbit
    May 23 at 23:07







7




7





With the injected class name one can really qualify stuff. ::A::A::A::A::f(). Not sure if it's "fully" though.

– StoryTeller
May 23 at 10:42





With the injected class name one can really qualify stuff. ::A::A::A::A::f(). Not sure if it's "fully" though.

– StoryTeller
May 23 at 10:42




9




9





@StoryTeller We should petition to add that term to the standard! really-really-really-qualified-id etc

– Lightness Races in Orbit
May 23 at 11:24





@StoryTeller We should petition to add that term to the standard! really-really-really-qualified-id etc

– Lightness Races in Orbit
May 23 at 11:24













What does the language-lawyer tag mean?

– Evorlor
May 23 at 21:38





What does the language-lawyer tag mean?

– Evorlor
May 23 at 21:38




5




5





@Evorlor Hover your mouse over it (and/or click)

– Lightness Races in Orbit
May 23 at 23:07





@Evorlor Hover your mouse over it (and/or click)

– Lightness Races in Orbit
May 23 at 23:07












2 Answers
2






active

oldest

votes


















38














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, but it does mention it in [library]/[requirements]/[organization]/[contents] which says (quote from standard draft)




Whenever a name x defined in the standard library is mentioned, the name x is assumed to be fully qualified as ::std::x, unless explicitly described otherwise.
For example, if the Effects: element for library function F is described as calling library function G, the function ::std::G is meant.




Wikipedia defines Fully qualified name:




In computer programming, a fully qualified name is an unambiguous name that specifies which object, function, or variable a call refers to without regard to the context of the call




Only a name qualified starting from the global namespace is unambiguous without context. This is the common usage.






share|improve this answer
































    20














    Indeed, it is not a standard term. It has no definition in the standard.



    However, the phrase "fully qualified" appears exactly once, in [contents] (15.5.1.1 "Library contents" in the as-of-writing most current draft N4800) paragraph 3:




    Whenever a name x defined in the standard library is mentioned, the name x is assumed to be fully qualified as ::std::x, unless explicitly described otherwise.




    So in this definition, only names starting with :: are fully qualified.






    share|improve this answer























      Your Answer






      StackExchange.ifUsing("editor", function ()
      StackExchange.using("externalEditor", function ()
      StackExchange.using("snippets", function ()
      StackExchange.snippets.init();
      );
      );
      , "code-snippets");

      StackExchange.ready(function()
      var channelOptions =
      tags: "".split(" "),
      id: "1"
      ;
      initTagRenderer("".split(" "), "".split(" "), channelOptions);

      StackExchange.using("externalEditor", function()
      // Have to fire editor after snippets, if snippets enabled
      if (StackExchange.settings.snippets.snippetsEnabled)
      StackExchange.using("snippets", function()
      createEditor();
      );

      else
      createEditor();

      );

      function createEditor()
      StackExchange.prepareEditor(
      heartbeatType: 'answer',
      autoActivateHeartbeat: false,
      convertImagesToLinks: true,
      noModals: true,
      showLowRepImageUploadWarning: true,
      reputationToPostImages: 10,
      bindNavPrevention: true,
      postfix: "",
      imageUploader:
      brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
      contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
      allowUrls: true
      ,
      onDemand: true,
      discardSelector: ".discard-answer"
      ,immediatelyShowMarkdownHelp:true
      );



      );













      draft saved

      draft discarded


















      StackExchange.ready(
      function ()
      StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f56273345%2fwhat-is-a-fully-qualified-name%23new-answer', 'question_page');

      );

      Post as a guest















      Required, but never shown

























      2 Answers
      2






      active

      oldest

      votes








      2 Answers
      2






      active

      oldest

      votes









      active

      oldest

      votes






      active

      oldest

      votes









      38














      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, but it does mention it in [library]/[requirements]/[organization]/[contents] which says (quote from standard draft)




      Whenever a name x defined in the standard library is mentioned, the name x is assumed to be fully qualified as ::std::x, unless explicitly described otherwise.
      For example, if the Effects: element for library function F is described as calling library function G, the function ::std::G is meant.




      Wikipedia defines Fully qualified name:




      In computer programming, a fully qualified name is an unambiguous name that specifies which object, function, or variable a call refers to without regard to the context of the call




      Only a name qualified starting from the global namespace is unambiguous without context. This is the common usage.






      share|improve this answer





























        38














        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, but it does mention it in [library]/[requirements]/[organization]/[contents] which says (quote from standard draft)




        Whenever a name x defined in the standard library is mentioned, the name x is assumed to be fully qualified as ::std::x, unless explicitly described otherwise.
        For example, if the Effects: element for library function F is described as calling library function G, the function ::std::G is meant.




        Wikipedia defines Fully qualified name:




        In computer programming, a fully qualified name is an unambiguous name that specifies which object, function, or variable a call refers to without regard to the context of the call




        Only a name qualified starting from the global namespace is unambiguous without context. This is the common usage.






        share|improve this answer



























          38












          38








          38







          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, but it does mention it in [library]/[requirements]/[organization]/[contents] which says (quote from standard draft)




          Whenever a name x defined in the standard library is mentioned, the name x is assumed to be fully qualified as ::std::x, unless explicitly described otherwise.
          For example, if the Effects: element for library function F is described as calling library function G, the function ::std::G is meant.




          Wikipedia defines Fully qualified name:




          In computer programming, a fully qualified name is an unambiguous name that specifies which object, function, or variable a call refers to without regard to the context of the call




          Only a name qualified starting from the global namespace is unambiguous without context. This is the common usage.






          share|improve this answer















          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, but it does mention it in [library]/[requirements]/[organization]/[contents] which says (quote from standard draft)




          Whenever a name x defined in the standard library is mentioned, the name x is assumed to be fully qualified as ::std::x, unless explicitly described otherwise.
          For example, if the Effects: element for library function F is described as calling library function G, the function ::std::G is meant.




          Wikipedia defines Fully qualified name:




          In computer programming, a fully qualified name is an unambiguous name that specifies which object, function, or variable a call refers to without regard to the context of the call




          Only a name qualified starting from the global namespace is unambiguous without context. This is the common usage.







          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited May 28 at 18:07

























          answered May 23 at 10:43









          eerorikaeerorika

          94.4k671139




          94.4k671139























              20














              Indeed, it is not a standard term. It has no definition in the standard.



              However, the phrase "fully qualified" appears exactly once, in [contents] (15.5.1.1 "Library contents" in the as-of-writing most current draft N4800) paragraph 3:




              Whenever a name x defined in the standard library is mentioned, the name x is assumed to be fully qualified as ::std::x, unless explicitly described otherwise.




              So in this definition, only names starting with :: are fully qualified.






              share|improve this answer



























                20














                Indeed, it is not a standard term. It has no definition in the standard.



                However, the phrase "fully qualified" appears exactly once, in [contents] (15.5.1.1 "Library contents" in the as-of-writing most current draft N4800) paragraph 3:




                Whenever a name x defined in the standard library is mentioned, the name x is assumed to be fully qualified as ::std::x, unless explicitly described otherwise.




                So in this definition, only names starting with :: are fully qualified.






                share|improve this answer

























                  20












                  20








                  20







                  Indeed, it is not a standard term. It has no definition in the standard.



                  However, the phrase "fully qualified" appears exactly once, in [contents] (15.5.1.1 "Library contents" in the as-of-writing most current draft N4800) paragraph 3:




                  Whenever a name x defined in the standard library is mentioned, the name x is assumed to be fully qualified as ::std::x, unless explicitly described otherwise.




                  So in this definition, only names starting with :: are fully qualified.






                  share|improve this answer













                  Indeed, it is not a standard term. It has no definition in the standard.



                  However, the phrase "fully qualified" appears exactly once, in [contents] (15.5.1.1 "Library contents" in the as-of-writing most current draft N4800) paragraph 3:




                  Whenever a name x defined in the standard library is mentioned, the name x is assumed to be fully qualified as ::std::x, unless explicitly described otherwise.




                  So in this definition, only names starting with :: are fully qualified.







                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered May 23 at 10:44









                  Sebastian RedlSebastian Redl

                  52k579123




                  52k579123



























                      draft saved

                      draft discarded
















































                      Thanks for contributing an answer to Stack Overflow!


                      • Please be sure to answer the question. Provide details and share your research!

                      But avoid


                      • Asking for help, clarification, or responding to other answers.

                      • Making statements based on opinion; back them up with references or personal experience.

                      To learn more, see our tips on writing great answers.




                      draft saved


                      draft discarded














                      StackExchange.ready(
                      function ()
                      StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f56273345%2fwhat-is-a-fully-qualified-name%23new-answer', 'question_page');

                      );

                      Post as a guest















                      Required, but never shown





















































                      Required, but never shown














                      Required, but never shown












                      Required, but never shown







                      Required, but never shown

































                      Required, but never shown














                      Required, but never shown












                      Required, but never shown







                      Required, but never shown







                      Popular posts from this blog

                      Club Baloncesto Breogán Índice Historia | Pavillón | Nome | O Breogán na cultura popular | Xogadores | Adestradores | Presidentes | Palmarés | Historial | Líderes | Notas | Véxase tamén | Menú de navegacióncbbreogan.galCadroGuía oficial da ACB 2009-10, páxina 201Guía oficial ACB 1992, páxina 183. Editorial DB.É de 6.500 espectadores sentados axeitándose á última normativa"Estudiantes Junior, entre as mellores canteiras"o orixinalHemeroteca El Mundo Deportivo, 16 setembro de 1970, páxina 12Historia do BreogánAlfredo Pérez, o último canoneiroHistoria C.B. BreogánHemeroteca de El Mundo DeportivoJimmy Wright, norteamericano do Breogán deixará Lugo por ameazas de morteResultados de Breogán en 1986-87Resultados de Breogán en 1990-91Ficha de Velimir Perasović en acb.comResultados de Breogán en 1994-95Breogán arrasa al Barça. "El Mundo Deportivo", 27 de setembro de 1999, páxina 58CB Breogán - FC BarcelonaA FEB invita a participar nunha nova Liga EuropeaCharlie Bell na prensa estatalMáximos anotadores 2005Tempada 2005-06 : Tódolos Xogadores da Xornada""Non quero pensar nunha man negra, mais pregúntome que está a pasar""o orixinalRaúl López, orgulloso dos xogadores, presume da boa saúde económica do BreogánJulio González confirma que cesa como presidente del BreogánHomenaxe a Lisardo GómezA tempada do rexurdimento celesteEntrevista a Lisardo GómezEl COB dinamita el Pazo para forzar el quinto (69-73)Cafés Candelas, patrocinador del CB Breogán"Suso Lázare, novo presidente do Breogán"o orixinalCafés Candelas Breogán firma el mayor triunfo de la historiaEl Breogán realizará 17 homenajes por su cincuenta aniversario"O Breogán honra ao seu fundador e primeiro presidente"o orixinalMiguel Giao recibiu a homenaxe do PazoHomenaxe aos primeiros gladiadores celestesO home que nos amosa como ver o Breo co corazónTita Franco será homenaxeada polos #50anosdeBreoJulio Vila recibirá unha homenaxe in memoriam polos #50anosdeBreo"O Breogán homenaxeará aos seus aboados máis veteráns"Pechada ovación a «Capi» Sanmartín e Ricardo «Corazón de González»Homenaxe por décadas de informaciónPaco García volve ao Pazo con motivo do 50 aniversario"Resultados y clasificaciones""O Cafés Candelas Breogán, campión da Copa Princesa""O Cafés Candelas Breogán, equipo ACB"C.B. Breogán"Proxecto social"o orixinal"Centros asociados"o orixinalFicha en imdb.comMario Camus trata la recuperación del amor en 'La vieja música', su última película"Páxina web oficial""Club Baloncesto Breogán""C. B. Breogán S.A.D."eehttp://www.fegaba.com

                      Vilaño, A Laracha Índice Patrimonio | Lugares e parroquias | Véxase tamén | Menú de navegación43°14′52″N 8°36′03″O / 43.24775, -8.60070

                      Cegueira Índice Epidemioloxía | Deficiencia visual | Tipos de cegueira | Principais causas de cegueira | Tratamento | Técnicas de adaptación e axudas | Vida dos cegos | Primeiros auxilios | Crenzas respecto das persoas cegas | Crenzas das persoas cegas | O neno deficiente visual | Aspectos psicolóxicos da cegueira | Notas | Véxase tamén | Menú de navegación54.054.154.436928256blindnessDicionario da Real Academia GalegaPortal das Palabras"International Standards: Visual Standards — Aspects and Ranges of Vision Loss with Emphasis on Population Surveys.""Visual impairment and blindness""Presentan un plan para previr a cegueira"o orixinalACCDV Associació Catalana de Cecs i Disminuïts Visuals - PMFTrachoma"Effect of gene therapy on visual function in Leber's congenital amaurosis"1844137110.1056/NEJMoa0802268Cans guía - os mellores amigos dos cegosArquivadoEscola de cans guía para cegos en Mortágua, PortugalArquivado"Tecnología para ciegos y deficientes visuales. Recopilación de recursos gratuitos en la Red""Colorino""‘COL.diesis’, escuchar los sonidos del color""COL.diesis: Transforming Colour into Melody and Implementing the Result in a Colour Sensor Device"o orixinal"Sistema de desarrollo de sinestesia color-sonido para invidentes utilizando un protocolo de audio""Enseñanza táctil - geometría y color. Juegos didácticos para niños ciegos y videntes""Sistema Constanz"L'ocupació laboral dels cecs a l'Estat espanyol està pràcticament equiparada a la de les persones amb visió, entrevista amb Pedro ZuritaONCE (Organización Nacional de Cegos de España)Prevención da cegueiraDescrición de deficiencias visuais (Disc@pnet)Braillín, un boneco atractivo para calquera neno, con ou sen discapacidade, que permite familiarizarse co sistema de escritura e lectura brailleAxudas Técnicas36838ID00897494007150-90057129528256DOID:1432HP:0000618D001766C10.597.751.941.162C97109C0155020