Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. The Lounge
  3. CamelCase naming convention

CamelCase naming convention

Scheduled Pinned Locked Moved The Lounge
csharpc++javacomtools
91 Posts 51 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • N Nemanja Trifunovic

    Why most programmers (at least Windows and Java programmers) use this horrible notation? It is both hard to write and hard to read:

    GetMyPreciousDataFromAnXMLFile()

    With undrescores it is at least easy to read if not to write:

    get_my_precious_data_from_an_XML_file()

    And of course, there is always a way to make it easy to write but hard to read:

    getmypreciousdatafromanXMLfile()

    Lispers have the best of both worlds (well, except for the parentheses):

    (get-my-precious-data-from-an-XML-file)

    I feel better now - feel free to vote me down :)

    Programming Blog utf8-cpp

    E Offline
    E Offline
    Eytukan
    wrote on last edited by
    #36

    Nemanja Trifunovic wrote:

    getmypreciousdatafromanXMLfile()

    You are really cunning. :laugh: That's not a camel, that's a snake with a big ass. A real camel would look something like this:

    getMyPreciousDataFromAnXMLFile

    Starting to think people post kid pics in their profiles because that was the last time they were cute - Jeremy.

    1 Reply Last reply
    0
    • N Nemanja Trifunovic

      Why most programmers (at least Windows and Java programmers) use this horrible notation? It is both hard to write and hard to read:

      GetMyPreciousDataFromAnXMLFile()

      With undrescores it is at least easy to read if not to write:

      get_my_precious_data_from_an_XML_file()

      And of course, there is always a way to make it easy to write but hard to read:

      getmypreciousdatafromanXMLfile()

      Lispers have the best of both worlds (well, except for the parentheses):

      (get-my-precious-data-from-an-XML-file)

      I feel better now - feel free to vote me down :)

      Programming Blog utf8-cpp

      H Offline
      H Offline
      Hans Dietrich
      wrote on last edited by
      #37

      why_the_hell_is_XML_always_capitalized?

      Best wishes, Hans


      [CodeProject Forum Guidelines] [How To Ask A Question] [My Articles]

      P D 2 Replies Last reply
      0
      • G Gary Wheeler

        Jim (SS) wrote:

        "Real programmers can write Fortran in any language". Unknown

        Real programmers spell it FORTRAN like God, IBM, and other TLA's intended.

        Software Zen: delete this;

        P Offline
        P Offline
        PIEBALDconsult
        wrote on last edited by
        #38

        Huh? I thought it was ForTran. :confused:

        G 1 Reply Last reply
        0
        • H Hans Dietrich

          why_the_hell_is_XML_always_capitalized?

          Best wishes, Hans


          [CodeProject Forum Guidelines] [How To Ask A Question] [My Articles]

          P Offline
          P Offline
          PIEBALDconsult
          wrote on last edited by
          #39

          Capitalized? No. Leveraged? Yes. :-D

          1 Reply Last reply
          0
          • D Douglas Troy

            I can almost see you sitting in front of your computer, Rama, hunched over ... coveting your code ... whispering ... It is ... My Precious ... :rolleyes:

            R Offline
            R Offline
            Rama Krishna Vavilala
            wrote on last edited by
            #40

            That was a typo. here is the actual code.

            [myPrecious loadDataFromXML];

            D 1 Reply Last reply
            0
            • J Jim SS

              Gary Wheeler wrote:

              spell it FORTRAN

              I was wondering how many other people even knew that. Even C# and Java still allow GOTOs, so the statement is still true.:cool:

              SS => Qualified in Submarines "We sleep soundly in our beds because rough men stand ready in the night to visit violence on those who would do us harm". Winston Churchill "Real programmers can write FORTRAN in any language". Unknown

              G Offline
              G Offline
              Gary Wheeler
              wrote on last edited by
              #41

              Much better.

              Software Zen: delete this;

              1 Reply Last reply
              0
              • P PIEBALDconsult

                Huh? I thought it was ForTran. :confused:

                G Offline
                G Offline
                Gary Wheeler
                wrote on last edited by
                #42

                FORmula TRANslation[^]

                Software Zen: delete this;

                1 Reply Last reply
                0
                • N Nemanja Trifunovic

                  Why most programmers (at least Windows and Java programmers) use this horrible notation? It is both hard to write and hard to read:

                  GetMyPreciousDataFromAnXMLFile()

                  With undrescores it is at least easy to read if not to write:

                  get_my_precious_data_from_an_XML_file()

                  And of course, there is always a way to make it easy to write but hard to read:

                  getmypreciousdatafromanXMLfile()

                  Lispers have the best of both worlds (well, except for the parentheses):

                  (get-my-precious-data-from-an-XML-file)

                  I feel better now - feel free to vote me down :)

                  Programming Blog utf8-cpp

                  L Offline
                  L Offline
                  Le centriste
                  wrote on last edited by
                  #43

                  Put on smart-ass hat

                  Nemanja Trifunovic wrote:

                  GetMyPreciousDataFromAnXMLFile()

                  This is known as Pascal-case. Camel case version would have a small "g" at the beginning. Take off smart-ass hat

                  N 1 Reply Last reply
                  0
                  • R Rajesh R Subramanian

                    Things like these are a matter of personal preference. Talking about code formatting, I call people who do this a rogue:

                    void MyMagicFunc(LPVOID pParams){

                    if(!pParams){
                    HandleError();
                    }

                    //stuff goes here
                    }

                    I much prefer this instead:

                    void MyMagicFunc(LPVOID pParams)
                    {
                    if(!pParams)
                    {
                    HandleError();
                    }

                    //stuff goes here
                    }

                    But, I'm well prepared to be called a rogue by those who don't like my style, as everyone may not like the same way of doing things. :) [ADDED] Just noticed the camel casing in my post. [/ADDED]

                    It is a crappy thing, but it's life -^ Carlo Pallini

                    OriginalGriffO Offline
                    OriginalGriffO Offline
                    OriginalGriff
                    wrote on last edited by
                    #44

                    I agree, but prefer

                    void MyMagicFunc(LPVOID pParams)
                    {
                    if(!pParams)
                    {
                    HandleError();
                    }
                    //stuff goes here
                    }

                    Dunno why, been using it since I started with C (so it was probably a company style thing at the time). Either way, it is a lot clearer how the brackets match up.

                    "I have no idea what I did, but I'm taking full credit for it." - ThisOldTony
                    "Common sense is so rare these days, it should be classified as a super power" - Random T-shirt

                    1 Reply Last reply
                    0
                    • N Nemanja Trifunovic

                      Why most programmers (at least Windows and Java programmers) use this horrible notation? It is both hard to write and hard to read:

                      GetMyPreciousDataFromAnXMLFile()

                      With undrescores it is at least easy to read if not to write:

                      get_my_precious_data_from_an_XML_file()

                      And of course, there is always a way to make it easy to write but hard to read:

                      getmypreciousdatafromanXMLfile()

                      Lispers have the best of both worlds (well, except for the parentheses):

                      (get-my-precious-data-from-an-XML-file)

                      I feel better now - feel free to vote me down :)

                      Programming Blog utf8-cpp

                      C Offline
                      C Offline
                      CPallini
                      wrote on last edited by
                      #45

                      No Camelcase, no Pascal, no undescores, no hyphen. Method names should be like foo() or goo() (names like send() and recv(), deprecated, are allowed only if you're in a poetic mood). :)

                      If the Lord God Almighty had consulted me before embarking upon the Creation, I would have recommended something simpler. -- Alfonso the Wise, 13th Century King of Castile.
                      This is going on my arrogant assumptions. You may have a superb reason why I'm completely wrong. -- Iain Clarke
                      [My articles]

                      1 Reply Last reply
                      0
                      • L Le centriste

                        Put on smart-ass hat

                        Nemanja Trifunovic wrote:

                        GetMyPreciousDataFromAnXMLFile()

                        This is known as Pascal-case. Camel case version would have a small "g" at the beginning. Take off smart-ass hat

                        N Offline
                        N Offline
                        Nemanja Trifunovic
                        wrote on last edited by
                        #46

                        And for the third time in this thread: depends whom you ask[^].

                        Programming Blog utf8-cpp

                        1 Reply Last reply
                        0
                        • H Hans Dietrich

                          why_the_hell_is_XML_always_capitalized?

                          Best wishes, Hans


                          [CodeProject Forum Guidelines] [How To Ask A Question] [My Articles]

                          D Offline
                          D Offline
                          Dan Neely
                          wrote on last edited by
                          #47

                          DunnoIAlwaysDoThisWhenPuttingXmlInACamelCaseString

                          Today's lesson is brought to you by the word "niggardly". Remember kids, don't attribute to racism what can be explained by Scandinavian language roots. -- Robert Royall

                          H 1 Reply Last reply
                          0
                          • D Dan Neely

                            DunnoIAlwaysDoThisWhenPuttingXmlInACamelCaseString

                            Today's lesson is brought to you by the word "niggardly". Remember kids, don't attribute to racism what can be explained by Scandinavian language roots. -- Robert Royall

                            H Offline
                            H Offline
                            Hans Dietrich
                            wrote on last edited by
                            #48

                            YeahMeToo

                            Best wishes, Hans


                            [CodeProject Forum Guidelines] [How To Ask A Question] [My Articles]

                            1 Reply Last reply
                            0
                            • N Nemanja Trifunovic

                              Brady Kelly wrote:

                              That is actually Pascal Case. thisIsCamelCase.

                              Depends whom you ask[^]. I consider Pascal case to be a variant of camel case.

                              Programming Blog utf8-cpp

                              L Offline
                              L Offline
                              Le centriste
                              wrote on last edited by
                              #49

                              After 5 years in university 15 years in the business, Pascal- and camel-case have always be the same.

                              1 Reply Last reply
                              0
                              • R Rama Krishna Vavilala

                                That was a typo. here is the actual code.

                                [myPrecious loadDataFromXML];

                                D Offline
                                D Offline
                                Douglas Troy
                                wrote on last edited by
                                #50

                                Does that conform to the LOTR Design Pattern? ;)

                                1 Reply Last reply
                                0
                                • R Rajesh R Subramanian

                                  Things like these are a matter of personal preference. Talking about code formatting, I call people who do this a rogue:

                                  void MyMagicFunc(LPVOID pParams){

                                  if(!pParams){
                                  HandleError();
                                  }

                                  //stuff goes here
                                  }

                                  I much prefer this instead:

                                  void MyMagicFunc(LPVOID pParams)
                                  {
                                  if(!pParams)
                                  {
                                  HandleError();
                                  }

                                  //stuff goes here
                                  }

                                  But, I'm well prepared to be called a rogue by those who don't like my style, as everyone may not like the same way of doing things. :) [ADDED] Just noticed the camel casing in my post. [/ADDED]

                                  It is a crappy thing, but it's life -^ Carlo Pallini

                                  C Offline
                                  C Offline
                                  CPallini
                                  wrote on last edited by
                                  #51

                                  Rajesh R Subramanian wrote:

                                  void MyMagicFunc(LPVOID pParams){ if(!pParams){ HandleError(); } //stuff goes here }

                                  void fun(void *p)
                                  {
                                  if (!p)
                                  {
                                  cry();
                                  }
                                  /* stuff */
                                  }

                                  fixed. :laugh:

                                  If the Lord God Almighty had consulted me before embarking upon the Creation, I would have recommended something simpler. -- Alfonso the Wise, 13th Century King of Castile.
                                  This is going on my arrogant assumptions. You may have a superb reason why I'm completely wrong. -- Iain Clarke
                                  [My articles]

                                  1 Reply Last reply
                                  0
                                  • R Rajesh R Subramanian

                                    Things like these are a matter of personal preference. Talking about code formatting, I call people who do this a rogue:

                                    void MyMagicFunc(LPVOID pParams){

                                    if(!pParams){
                                    HandleError();
                                    }

                                    //stuff goes here
                                    }

                                    I much prefer this instead:

                                    void MyMagicFunc(LPVOID pParams)
                                    {
                                    if(!pParams)
                                    {
                                    HandleError();
                                    }

                                    //stuff goes here
                                    }

                                    But, I'm well prepared to be called a rogue by those who don't like my style, as everyone may not like the same way of doing things. :) [ADDED] Just noticed the camel casing in my post. [/ADDED]

                                    It is a crappy thing, but it's life -^ Carlo Pallini

                                    L Offline
                                    L Offline
                                    Lost User
                                    wrote on last edited by
                                    #52

                                    I only ever use ! on a true boolean value and always use NULL when checking pointers. :) I find it easier to read, especially as I dumped Hungarian notation years ago:

                                    if (foo == NULL)
                                    {
                                    // I know 'foo' is a pointer
                                    }

                                    if (!bar)
                                    {
                                    // I know 'bar' is a bool
                                    }

                                    Each to their own.

                                    R 1 Reply Last reply
                                    0
                                    • N Nemanja Trifunovic

                                      Why most programmers (at least Windows and Java programmers) use this horrible notation? It is both hard to write and hard to read:

                                      GetMyPreciousDataFromAnXMLFile()

                                      With undrescores it is at least easy to read if not to write:

                                      get_my_precious_data_from_an_XML_file()

                                      And of course, there is always a way to make it easy to write but hard to read:

                                      getmypreciousdatafromanXMLfile()

                                      Lispers have the best of both worlds (well, except for the parentheses):

                                      (get-my-precious-data-from-an-XML-file)

                                      I feel better now - feel free to vote me down :)

                                      Programming Blog utf8-cpp

                                      L Offline
                                      L Offline
                                      Lost User
                                      wrote on last edited by
                                      #53

                                      Personally I prefer camel / Pascal case generally, ut reserve the use of the underscore for punctuation.. e.g. I might have Patient_Doctor which contains the many-many links between patients and doctors, and separates it from PatientDoctor which would be a collection of doctors who are easy-going.

                                      ___________________________________________ .\\axxx (That's an 'M')

                                      1 Reply Last reply
                                      0
                                      • N Nemanja Trifunovic

                                        Why most programmers (at least Windows and Java programmers) use this horrible notation? It is both hard to write and hard to read:

                                        GetMyPreciousDataFromAnXMLFile()

                                        With undrescores it is at least easy to read if not to write:

                                        get_my_precious_data_from_an_XML_file()

                                        And of course, there is always a way to make it easy to write but hard to read:

                                        getmypreciousdatafromanXMLfile()

                                        Lispers have the best of both worlds (well, except for the parentheses):

                                        (get-my-precious-data-from-an-XML-file)

                                        I feel better now - feel free to vote me down :)

                                        Programming Blog utf8-cpp

                                        R Offline
                                        R Offline
                                        Roger Wright
                                        wrote on last edited by
                                        #54

                                        I prefer to use names that contain umlauts[^] over each vowel. Reading it is a bitch, and typing it is much harder, but it's my own style, and I like that. It's important, I think, to express one's individuality in the workplace.

                                        "A Journey of a Thousand Rest Stops Begins with a Single Movement"

                                        J 1 Reply Last reply
                                        0
                                        • L Lost User

                                          I only ever use ! on a true boolean value and always use NULL when checking pointers. :) I find it easier to read, especially as I dumped Hungarian notation years ago:

                                          if (foo == NULL)
                                          {
                                          // I know 'foo' is a pointer
                                          }

                                          if (!bar)
                                          {
                                          // I know 'bar' is a bool
                                          }

                                          Each to their own.

                                          R Offline
                                          R Offline
                                          Rajesh R Subramanian
                                          wrote on last edited by
                                          #55

                                          Rob Caldecott wrote:

                                          I only ever use ! on a true boolean value and always use NULL when checking pointers.

                                          Nice point. May be I will do it too. :)

                                          It is a crappy thing, but it's life -^ Carlo Pallini

                                          1 Reply Last reply
                                          0
                                          Reply
                                          • Reply as topic
                                          Log in to reply
                                          • Oldest to Newest
                                          • Newest to Oldest
                                          • Most Votes


                                          • Login

                                          • Don't have an account? Register

                                          • Login or register to search.
                                          • First post
                                            Last post
                                          0
                                          • Categories
                                          • Recent
                                          • Tags
                                          • Popular
                                          • World
                                          • Users
                                          • Groups