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. What's the story with Hungarian Notation these days?

What's the story with Hungarian Notation these days?

Scheduled Pinned Locked Moved The Lounge
csharpc++question
50 Posts 16 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.
  • E Ennis Ray Lynch Jr

    IMHO, people that use _ in front of members are not using camelCase or Pascal case and are just as guilty as prefixing variables as the hungarian crowd. Oh, yeah, more VB.NET hate

    public class Foo{
    private int bar;
    public int Bar{
    get{
    return bar;
    }
    }

    }

    is legal in C#, neener. If you use a case sensitive language, you don't need an underscore.

    Need custom software developed? I do custom programming based primarily on MS tools with an emphasis on C# development and consulting. I also do Android Programming as I find it a refreshing break from the MS. "And they, since they Were not the one dead, turned to their affairs" -- Robert Frost

    S Offline
    S Offline
    Septimus Hedgehog
    wrote on last edited by
    #7

    I accept your gripe. :) Two thing about that come to mind: 1. Where's the setter property? 2. I'd opt for an automatic property where possible. I don't like the underscore prefix but I find myself using them because it's almost a requirement and in some places I've been at it's a coding "standard".

    "I do not have to forgive my enemies, I have had them all shot." — Ramón Maria Narváez (1800-68). "I don't need to shoot my enemies, I don't have any." - Me (2012).

    B 1 Reply Last reply
    0
    • R Ravi Bhavnani

      Ennis Ray Lynch, Jr. wrote:

      you don't need an underscore.

      You don't need it (or any other naming convention for that matter).  Leading underscores are written to immediately identify a variable as being private to that class (vs. a local). /ravi

      My new year resolution: 2048 x 1536 Home | Articles | My .NET bits | Freeware ravib(at)ravib(dot)com

      L Offline
      L Offline
      lewax00
      wrote on last edited by
      #8

      Ravi Bhavnani wrote:

      Leading underscores are written to immediately identify a variable as being private to that class (vs. a local).

      That convention is common in Python, except Python doesn't actually have private members, so an underscore is really just saying "Please don't use this...pretty please?".

      R 1 Reply Last reply
      0
      • L lewax00

        Ravi Bhavnani wrote:

        Leading underscores are written to immediately identify a variable as being private to that class (vs. a local).

        That convention is common in Python, except Python doesn't actually have private members, so an underscore is really just saying "Please don't use this...pretty please?".

        R Offline
        R Offline
        Ravi Bhavnani
        wrote on last edited by
        #9

        And in Google Closure, trailing underscores are used to identify private fields! /ravi

        My new year resolution: 2048 x 1536 Home | Articles | My .NET bits | Freeware ravib(at)ravib(dot)com

        L 1 Reply Last reply
        0
        • R Ravi Bhavnani

          And in Google Closure, trailing underscores are used to identify private fields! /ravi

          My new year resolution: 2048 x 1536 Home | Articles | My .NET bits | Freeware ravib(at)ravib(dot)com

          L Offline
          L Offline
          lewax00
          wrote on last edited by
          #10

          That sounds inconvenient...I like typing underscore and getting a list of private members, and when looking at a list being able to quickly identify them. That breaks the former and makes the latter harder. :doh:

          R 1 Reply Last reply
          0
          • S Septimus Hedgehog

            Just about every bit of C# code I've seen is uses mostly camel-case names. Just about every bit of C++ code I've seen is written using Hungarian Notation. Why is it still like that?

            "I do not have to forgive my enemies, I have had them all shot." — Ramón Maria Narváez (1800-68). "I don't need to shoot my enemies, I don't have any." - Me (2012).

            K Offline
            K Offline
            Kevin Marois
            wrote on last edited by
            #11

            I'v been coding for 25 years. Camel case is a throwback from the days when all variables has to start with a lowercase letter.

            If it's not broken, fix it until it is

            J 1 Reply Last reply
            0
            • E Ennis Ray Lynch Jr

              IMHO, people that use _ in front of members are not using camelCase or Pascal case and are just as guilty as prefixing variables as the hungarian crowd. Oh, yeah, more VB.NET hate

              public class Foo{
              private int bar;
              public int Bar{
              get{
              return bar;
              }
              }

              }

              is legal in C#, neener. If you use a case sensitive language, you don't need an underscore.

              Need custom software developed? I do custom programming based primarily on MS tools with an emphasis on C# development and consulting. I also do Android Programming as I find it a refreshing break from the MS. "And they, since they Were not the one dead, turned to their affairs" -- Robert Frost

              V Offline
              V Offline
              Vark111
              wrote on last edited by
              #12

              In the same vein of a previous reply I left... I use underscores before my private members because that's the default setting for the style checker built into Resharper, and I'm loath to change default settings. Makes setting up new systems and syncing with coworkers easier.

              E 1 Reply Last reply
              0
              • S Septimus Hedgehog

                Just about every bit of C# code I've seen is uses mostly camel-case names. Just about every bit of C++ code I've seen is written using Hungarian Notation. Why is it still like that?

                "I do not have to forgive my enemies, I have had them all shot." — Ramón Maria Narváez (1800-68). "I don't need to shoot my enemies, I don't have any." - Me (2012).

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

                I (mostly) use Camel case exclusively in C# - because it's the standard. I can't seem to break myself of butOK and butCancel, dgvListNotes and so from though for controls, which harks back to my Hungarian C++ days. I do use underscores - for Property bases only, to differentiate them from the Property and to make it harder for me to accidentally use the wrong one - set the Property instead of the base in the Property setter, and so forth... :-O

                If you get an email telling you that you can catch Swine Flu from tinned pork then just delete it. It's Spam.

                "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
                • L lewax00

                  That sounds inconvenient...I like typing underscore and getting a list of private members, and when looking at a list being able to quickly identify them. That breaks the former and makes the latter harder. :doh:

                  R Offline
                  R Offline
                  Ravi Bhavnani
                  wrote on last edited by
                  #14

                  True. :( /ravi

                  My new year resolution: 2048 x 1536 Home | Articles | My .NET bits | Freeware ravib(at)ravib(dot)com

                  1 Reply Last reply
                  0
                  • S Septimus Hedgehog

                    Just about every bit of C# code I've seen is uses mostly camel-case names. Just about every bit of C++ code I've seen is written using Hungarian Notation. Why is it still like that?

                    "I do not have to forgive my enemies, I have had them all shot." — Ramón Maria Narváez (1800-68). "I don't need to shoot my enemies, I don't have any." - Me (2012).

                    B Offline
                    B Offline
                    bwhittington
                    wrote on last edited by
                    #15

                    I only use Hungarian Notation when naming controls on a win and web forms. I it like this because of intellisense will then show all like control together.

                    Brett A. Whittington Application Developer

                    1 Reply Last reply
                    0
                    • S Septimus Hedgehog

                      Just about every bit of C# code I've seen is uses mostly camel-case names. Just about every bit of C++ code I've seen is written using Hungarian Notation. Why is it still like that?

                      "I do not have to forgive my enemies, I have had them all shot." — Ramón Maria Narváez (1800-68). "I don't need to shoot my enemies, I don't have any." - Me (2012).

                      _ Offline
                      _ Offline
                      _beauw_
                      wrote on last edited by
                      #16

                      I don't think that the fundamental aspects of the C/C++ type system that led to Hungarian notation have really changed. At least, this is true in the realm of unmanaged C++. Hungarian notation didn't simply go out of style... it was (and is) a product of the Windows API's design.

                      J 1 Reply Last reply
                      0
                      • R Ravi Bhavnani

                        Ennis Ray Lynch, Jr. wrote:

                        you don't need an underscore.

                        You don't need it (or any other naming convention for that matter).  Leading underscores are written to immediately identify a variable as being private to that class (vs. a local). /ravi

                        My new year resolution: 2048 x 1536 Home | Articles | My .NET bits | Freeware ravib(at)ravib(dot)com

                        E Offline
                        E Offline
                        Ennis Ray Lynch Jr
                        wrote on last edited by
                        #17

                        Ah, but that is a prefix, and no prefixes are allowed :) Amazing how you can hear that argument from people that can justify using the prefix _ but no other prefix, not saying that you do, I get it. But come on, if you are going to prefix, use m. It has a meaning. I really think MS choose _ because they intentionally didn't want to use m. Personally, I use m. I just hate the "justification" for _ so I definitely understand and desire the need to know whether it is a member or a local.

                        Need custom software developed? I do custom programming based primarily on MS tools with an emphasis on C# development and consulting. I also do Android Programming as I find it a refreshing break from the MS. "And they, since they Were not the one dead, turned to their affairs" -- Robert Frost

                        R J 2 Replies Last reply
                        0
                        • V Vark111

                          In the same vein of a previous reply I left... I use underscores before my private members because that's the default setting for the style checker built into Resharper, and I'm loath to change default settings. Makes setting up new systems and syncing with coworkers easier.

                          E Offline
                          E Offline
                          Ennis Ray Lynch Jr
                          wrote on last edited by
                          #18

                          Doing something because it is easier is not really a justification. 99% of the time it is easier to not explain to people why using the as operator (not alias) is a bad idea; yet I dissallow it on my teams and fight the battle every time. I refuse to code at the lowest common denominator. Of course, I also allow everyone on my teams to code using their own style. 1) It fosters productivity, 2) If you can't read it you shouldn't be in charge anyway, 3) If it is really bad it makes it easy to fix through shared learning, 4) I can spot everyone's code from a mile away so I know what kind of errors to look for. People make the same mistakes over and over. But I can see the good in a universal standard, no thinking, no achievement, no responsibility, and no accountability. I better stop now before this turns into a complete rant against the "institution"

                          Need custom software developed? I do custom programming based primarily on MS tools with an emphasis on C# development and consulting. I also do Android Programming as I find it a refreshing break from the MS. "And they, since they Were not the one dead, turned to their affairs" -- Robert Frost

                          B V B 3 Replies Last reply
                          0
                          • E Ennis Ray Lynch Jr

                            Doing something because it is easier is not really a justification. 99% of the time it is easier to not explain to people why using the as operator (not alias) is a bad idea; yet I dissallow it on my teams and fight the battle every time. I refuse to code at the lowest common denominator. Of course, I also allow everyone on my teams to code using their own style. 1) It fosters productivity, 2) If you can't read it you shouldn't be in charge anyway, 3) If it is really bad it makes it easy to fix through shared learning, 4) I can spot everyone's code from a mile away so I know what kind of errors to look for. People make the same mistakes over and over. But I can see the good in a universal standard, no thinking, no achievement, no responsibility, and no accountability. I better stop now before this turns into a complete rant against the "institution"

                            Need custom software developed? I do custom programming based primarily on MS tools with an emphasis on C# development and consulting. I also do Android Programming as I find it a refreshing break from the MS. "And they, since they Were not the one dead, turned to their affairs" -- Robert Frost

                            B Offline
                            B Offline
                            bwhittington
                            wrote on last edited by
                            #19

                            Could you explain to me or give me a reference to why "as" operator is bad? I use this all the time so I can check for nulls instead of throwing an exception. I did a search on as operator and all I found was a bunch of references on how to use it but not why it shouldn't be used. Thanks!

                            Brett A. Whittington Application Developer

                            E 1 Reply Last reply
                            0
                            • B bwhittington

                              Could you explain to me or give me a reference to why "as" operator is bad? I use this all the time so I can check for nulls instead of throwing an exception. I did a search on as operator and all I found was a bunch of references on how to use it but not why it shouldn't be used. Thanks!

                              Brett A. Whittington Application Developer

                              E Offline
                              E Offline
                              Ennis Ray Lynch Jr
                              wrote on last edited by
                              #20

                              As is used a blind assumption, for example, lets define a

                              public class Customer{
                              public string Id{
                              get;
                              set;
                              }
                              }

                              Now, lets use what seems like a perfectly valid blind assumption that the data in the table is always a string, because the db definition was at the time.

                              while(reader.Reader(){
                              Customer customer = new Customer();
                              customer.Id = reader["id"] as string;
                              }

                              Now lets presume, that someone realized that customer Id was incorrect in the db and fixes it to be the correct integer version. You will get an error in your code, the question is where and when, and at what crucial juncture? My example is contrived for simplicity but I got this exact error in a code-review after it crashed. I had told the specific developer to not use AS but, well, sure enough, when the DB schema changed the application crashed and no one could figure out why. (Fortunately, this was in development not production but given how some places work ...) Now lets look at some additional code

                              while(reader.Reader(){
                              Customer customer = new Customer();
                              customer.Id = (string)reader["id"];
                              }

                              This will crash immediately, and on target. One, we know that Customer Id shouldn't be null, and two, we know that null in the db is DBNull.Value so not directly assignable. While more verbose, in the case of fields that allow null, I still prefer:

                              while(reader.Reader(){
                              Customer customer = new Customer();
                              customer.Id = reader["id"] == DBNull.Value ? null | (string)reader["id"];
                              }

                              Again, it is about identifying errors reliably as soon as possible without too much code. After all, try and justify this one

                              while(reader.Reader(){
                              Customer customer = new Customer();
                              customer.Id = reader["id"] as string;
                              if(customer.Id == null){
                              throw new NullFieldException("wtf this should never happen");
                              }
                              }

                              So what it boils down to is the "as" operator introduces a non-trivial bug in potentially crucial areas. Type checking is very important and the assumption of conversion is a flaw, in my opinion. That is why strong typing is an asset. "as" is a way around strong typing, IMHO. YMMV. Note: customerId is defined as not null in the db.

                              Need custom software developed? I do custom programming based primarily on MS tools with an emphasis on

                              B 1 Reply Last reply
                              0
                              • E Ennis Ray Lynch Jr

                                As is used a blind assumption, for example, lets define a

                                public class Customer{
                                public string Id{
                                get;
                                set;
                                }
                                }

                                Now, lets use what seems like a perfectly valid blind assumption that the data in the table is always a string, because the db definition was at the time.

                                while(reader.Reader(){
                                Customer customer = new Customer();
                                customer.Id = reader["id"] as string;
                                }

                                Now lets presume, that someone realized that customer Id was incorrect in the db and fixes it to be the correct integer version. You will get an error in your code, the question is where and when, and at what crucial juncture? My example is contrived for simplicity but I got this exact error in a code-review after it crashed. I had told the specific developer to not use AS but, well, sure enough, when the DB schema changed the application crashed and no one could figure out why. (Fortunately, this was in development not production but given how some places work ...) Now lets look at some additional code

                                while(reader.Reader(){
                                Customer customer = new Customer();
                                customer.Id = (string)reader["id"];
                                }

                                This will crash immediately, and on target. One, we know that Customer Id shouldn't be null, and two, we know that null in the db is DBNull.Value so not directly assignable. While more verbose, in the case of fields that allow null, I still prefer:

                                while(reader.Reader(){
                                Customer customer = new Customer();
                                customer.Id = reader["id"] == DBNull.Value ? null | (string)reader["id"];
                                }

                                Again, it is about identifying errors reliably as soon as possible without too much code. After all, try and justify this one

                                while(reader.Reader(){
                                Customer customer = new Customer();
                                customer.Id = reader["id"] as string;
                                if(customer.Id == null){
                                throw new NullFieldException("wtf this should never happen");
                                }
                                }

                                So what it boils down to is the "as" operator introduces a non-trivial bug in potentially crucial areas. Type checking is very important and the assumption of conversion is a flaw, in my opinion. That is why strong typing is an asset. "as" is a way around strong typing, IMHO. YMMV. Note: customerId is defined as not null in the db.

                                Need custom software developed? I do custom programming based primarily on MS tools with an emphasis on

                                B Offline
                                B Offline
                                bwhittington
                                wrote on last edited by
                                #21

                                Thank you for the detailed explanation. I typically use the 'as' keyword when I am looking for controls using .FindControl when I am dynamically binding data which I think would be a good case to use the 'as' operator. But because of my familiarity with it, I am also using it in situations you described where it is dumb to check for null and then just throw another exception. I've got a bit to think about. Thanks again.

                                Brett A. Whittington Application Developer

                                1 Reply Last reply
                                0
                                • E Ennis Ray Lynch Jr

                                  Doing something because it is easier is not really a justification. 99% of the time it is easier to not explain to people why using the as operator (not alias) is a bad idea; yet I dissallow it on my teams and fight the battle every time. I refuse to code at the lowest common denominator. Of course, I also allow everyone on my teams to code using their own style. 1) It fosters productivity, 2) If you can't read it you shouldn't be in charge anyway, 3) If it is really bad it makes it easy to fix through shared learning, 4) I can spot everyone's code from a mile away so I know what kind of errors to look for. People make the same mistakes over and over. But I can see the good in a universal standard, no thinking, no achievement, no responsibility, and no accountability. I better stop now before this turns into a complete rant against the "institution"

                                  Need custom software developed? I do custom programming based primarily on MS tools with an emphasis on C# development and consulting. I also do Android Programming as I find it a refreshing break from the MS. "And they, since they Were not the one dead, turned to their affairs" -- Robert Frost

                                  V Offline
                                  V Offline
                                  Vark111
                                  wrote on last edited by
                                  #22

                                  Ennis Ray Lynch, Jr. wrote:

                                  no thinking, no achievement, no responsibility, and no accountability

                                  You forgot making source control diffs unusable and merges a royal pain in the rear.

                                  1 Reply Last reply
                                  0
                                  • E Ennis Ray Lynch Jr

                                    IMHO, people that use _ in front of members are not using camelCase or Pascal case and are just as guilty as prefixing variables as the hungarian crowd. Oh, yeah, more VB.NET hate

                                    public class Foo{
                                    private int bar;
                                    public int Bar{
                                    get{
                                    return bar;
                                    }
                                    }

                                    }

                                    is legal in C#, neener. If you use a case sensitive language, you don't need an underscore.

                                    Need custom software developed? I do custom programming based primarily on MS tools with an emphasis on C# development and consulting. I also do Android Programming as I find it a refreshing break from the MS. "And they, since they Were not the one dead, turned to their affairs" -- Robert Frost

                                    C Offline
                                    C Offline
                                    Clifford Nelson
                                    wrote on last edited by
                                    #23

                                    Personally I like the underscore for private variables. Makes them easy to find, and you know they are private class level. ReSharper enforces it. However when I was at Intel, I lost the battle to prefix with an underscore. Of course I was just a contractor, and there was an ex-contractor/new employee, who seemed like to take any position that was the opposite of mine, just to be an a$$. I think he did not appreciate that I did not think he was god of programming.

                                    J 1 Reply Last reply
                                    0
                                    • E Ennis Ray Lynch Jr

                                      Ah, but that is a prefix, and no prefixes are allowed :) Amazing how you can hear that argument from people that can justify using the prefix _ but no other prefix, not saying that you do, I get it. But come on, if you are going to prefix, use m. It has a meaning. I really think MS choose _ because they intentionally didn't want to use m. Personally, I use m. I just hate the "justification" for _ so I definitely understand and desire the need to know whether it is a member or a local.

                                      Need custom software developed? I do custom programming based primarily on MS tools with an emphasis on C# development and consulting. I also do Android Programming as I find it a refreshing break from the MS. "And they, since they Were not the one dead, turned to their affairs" -- Robert Frost

                                      R Offline
                                      R Offline
                                      Ravi Bhavnani
                                      wrote on last edited by
                                      #24

                                      IIRC, the Java convention is also to use m_ m. /ravi

                                      My new year resolution: 2048 x 1536 Home | Articles | My .NET bits | Freeware ravib(at)ravib(dot)com

                                      1 Reply Last reply
                                      0
                                      • S Septimus Hedgehog

                                        Just about every bit of C# code I've seen is uses mostly camel-case names. Just about every bit of C++ code I've seen is written using Hungarian Notation. Why is it still like that?

                                        "I do not have to forgive my enemies, I have had them all shot." — Ramón Maria Narváez (1800-68). "I don't need to shoot my enemies, I don't have any." - Me (2012).

                                        R Offline
                                        R Offline
                                        RugbyLeague
                                        wrote on last edited by
                                        #25

                                        I use Bulgarian notation

                                        _ 1 Reply Last reply
                                        0
                                        • E Ennis Ray Lynch Jr

                                          Doing something because it is easier is not really a justification. 99% of the time it is easier to not explain to people why using the as operator (not alias) is a bad idea; yet I dissallow it on my teams and fight the battle every time. I refuse to code at the lowest common denominator. Of course, I also allow everyone on my teams to code using their own style. 1) It fosters productivity, 2) If you can't read it you shouldn't be in charge anyway, 3) If it is really bad it makes it easy to fix through shared learning, 4) I can spot everyone's code from a mile away so I know what kind of errors to look for. People make the same mistakes over and over. But I can see the good in a universal standard, no thinking, no achievement, no responsibility, and no accountability. I better stop now before this turns into a complete rant against the "institution"

                                          Need custom software developed? I do custom programming based primarily on MS tools with an emphasis on C# development and consulting. I also do Android Programming as I find it a refreshing break from the MS. "And they, since they Were not the one dead, turned to their affairs" -- Robert Frost

                                          B Offline
                                          B Offline
                                          BillWoodruff
                                          wrote on last edited by
                                          #26

                                          Ennis Ray Lynch, Jr. wrote:

                                          But I can see the good in a universal standard, no thinking, no achievement, no responsibility, and no accountability.

                                          Hi, Ennis, I enjoyed reading, and pondering over, your responses on this thread; particularly your detailed explication of your views on the "dangers of type conversion using 'as'." The example given, of a potential mis-match between the type of a database field, and its use, by mistake, in code as another type, I found a bit hard to follow, since both "casting," and use of "as," to convert int to string, and the reverse, will all generate compile time errors:

                                          private string aStr = "1234";
                                          private int someInt = 1234;

                                          int y1 = (int) aStr;
                                          // Cannot convert type 'string' to 'int'

                                          string z1 = (string) someInt;
                                          // Cannot convert type 'int' to 'string'

                                          int y2 = aStr as int;
                                          // The as operator must be used with a reference type or nullable type ('int' is a non-nullable value type)

                                          string z2 = someInt as string;
                                          // Cannot convert type 'int' to 'string' via a reference conversion, boxing conversion, unboxing conversion,
                                          // wrapping conversion, or null type conversion

                                          Your final, broad statement quoted above re "universal standard" equating with ... well, the broad negations you imply ... just does not communicate to me clearly what I think you mean as a broad philosophical/pragmatic principle: care to explicate that a bit further ? I think the development of "intellisense" to the level you now find it at in Visual Studio (and the "enhanced" extension of "intellisense" that can be added-on via tools like ReSharper), makes use of meaning-bearing prefixes often very useful. Sometimes your IDE can influence your use of prefixes (?): imagine you have a VS Studio Project, WinForms, for example, where you have loads of controls; I find prefixing each control with a type prefix like "cb_" for a CheckBox, with the prefix followed by a mnemonic name that indicates function: means: when I go open the drop-down in the Properties Window, all CheckBoxes will appear alphabetic order, which I find useful. Note: it's always seemed curious to me that the native Visual Studio facilities did not include a hierarchic (tree-view) control property-view inspector, that would let you drill-down through nested containers to "filter" the Controls presented by their Containers. I am surprised that the current ReSharper does not offer this enhanced view; perhaps other VS extenders

                                          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