What are in your opinion the worst subjects of widespread ignorance amongst programmers, i.e. things that everyone who aspires to be a professional should know and take seriously, but don't?
|
193
|
|||||||||||||||||||||
|
|
|
Ignorance of the fact that it's really important to let your coworkers know when you're ignorant of something! Especially when working with new colleagues, one of the hardest things I find is trying to figure out what the person knows and doesn't know. |
||||||||||||||||
|
|
|
Ignorance of the fact that questions like this should be community wiki. |
||||
|
|
|
In Java and C# (leaving aside ref/out): Myth: "Objects are passed by reference" Reality: "Objects aren't passed at all; references are passed by value" There's a significant difference, and it's often ignored :( Even in C everything is passed by value (including pointers). EDIT (jonskeet): Judging by the comments, it may be worth referring to my article on C# parameter passing. Hopefully this will reduce confusion rather than increasing it... |
||||||||||||||||||||
|
|
|
Not commenting unintuitive code. Not commenting unintuitive interfaces. Disregarding coding style in interface code. (I am kind of used to seeing it ignored in code, but it creeps me out when even the interfaces other people have to use don't blend) Inconsistency in naming, and ignorance of the value of consistent naming. |
||||
|
|
|
Mine is when programmers think only about the code and not about the users. I put usability first, and try my best to make everything as easy and intuitive to use as possible. Unfortunately, some programmers don't do that; e.g., they use non-descriptive labels for fields (or, don't use labels at all), don't plan and think about the interface layout, and the error messages explain things in a technical manner rather than telling the user what they need to do. If more programmers read books on usability, marketing, and other such concepts (like I do), the software world would be a much better place. |
||||||||||||||||||||
|
|
|
Ignorance that other programmers may need to maintain your code. I.e.:
Oh, people who think all abstractions are bad. You shouldn't use nHibernate, built in ASP.NET functionality and so on because you lose some control. Why don't they just code everything in assembly... Edit: I should point out I am not saying that you must use these abstractions, just that there is nothing wrong with using them when it makes sense to (e.g. it's foolish to use nHibernate on a very simple site). It's a judgement call on when an abstraction makes sense, I just think some people are ignorant about the benefits it can bring. |
||||||||||||||||||||
|
|
|
These aren't unversal, but are very common: Lack of knowledge (and interest) about what it takes to operate and support the software once delivered. Failure to appreciate software has no value in and of itself, but only adds value when it is used for something. Both of which lead to a lack of interest in what happens to the software once it's compiled, tested and released. |
||||
|
|
|
No one knows what the heck an MVC is. A lot of people think they know, but they're usually wrong. |
||||||||||||||||||||
|
|
|
The simpler, the better. |
|||
|
|
In Java : thinking that "synchronized" blocks are only about atomicity when usually the problems are more about visibility EDIT: Assuming I (Jon Skeet) understand you correctly, this is what I normally talk about as the difference between atomicity and volatility. And yes, it's misunderstood :( |
|||
|
|
|
|
Ignorance of Polymorphism. Even in Python (with duck typing!) people still try to write
Where, clearly, they should simply rename the three methods to create polymorphic classes. They can eliminate the if and simply
Yesterday I saw the "surrogate type check" design pattern.
Sigh. At parameter-parsing main-program-startup time, they should have done this.
Then, in the deeply-nested loop they could do this.
Simpler. Faster. Polymorphic. Pythonic. |
|||
|
|
I agree on the byte<->character issue. There are even several issues in this:
The last one is very unfortunate because it comes from half-knowledge. The usual reason for this is that while they use UTF-8 at one point they completely ignore all other places where the encoding would matter. |
|||
|
|
The lack of desire to continually improve. I've seen a lot of developers get to a certain level of skill and then just stop learning new things. No reading of blogs, journals, books; it's like they reached a certain skill level and went "yep, I know all I need to know now" |
||||||||||||||||||||
|
|
|
The biggest mistake I see new programmers make is trying to prove their code is correct when it obviously isn't. It usually runs like this:
My advice: Assume someone else wrote that code and you know it's broken. Find the broken bit... |
||||||||||||
|
|
|
The attitude that testing is unnecessary or time consuming If tests aren't written, then there is no way of knowing when some change in the system breaks something elsewhere. Writing tests saves time and money. In response to Kendall Helmstetter Gelner's comments: testing actually helps refactoring - if you have tests that tell you what the application should do, then when you refactor, those tests should still pass. This is where I have saved many hours of work, after all, the alternative is no tests or doing manual testing for everything, and that is a massive time sink. |
||||||||||||||||||||
|
|
|
I recently became aware that a lot (and I mean a LOT ) of programmers are not familiarised with the inheritance concept and have absolutely no idea why it is useful. |
||||||||||||
|
|
|
With large datasets being moved between systems in XML, not understanding the merits of SAX over DOM, and the performance implications of selecting DOM simply because it is easier to implement. I have seen a number totally unnecesary performance bottlenecks and system failures over this, with XML getting blamed rather than the lazy parser implementation. |
|||
|
|
|
|
I really don't like it when people are testing the value of a boolean like e.g.
Not only is it redundant and unnecessarily verbose, but with a language like C# where there's no implicit conversion from e.g.
will not compile, but
will ... |
||||||||||||||||||||
|
|
|
It easily has to be that 'Commenting bad code is better than actually refactoring it into good code' |
||||||||||||||||||||
|
|
|
|
||||||||||||||||
|
|
|
Thinking that it is OK to swallow an exception:
The default Eclipse template does this and so many people just catch a checked exception to get their code to compile and then ignore the ticking NPE. edit: A post by Reinier reminded me of this one:
|
||||||||||||
|
|
|
Programmers carrying over habits which may be desirable in one language, but aren't in the new one. Classic example is seeing C# or Java code like this:
This is usually written by ex-C or C++ developers who are trying to avoid the typo of:
which is valid C/C++ (although it generates a warning in most compilers). In C# and Java it's just unnecessary, and I believe most people find it harder to read than the more natural:
|
||||||||||||||||||||
|
|
|
My personal pet peeve (petty but my teeth grind everytime I see it) is verbosely setting booleans, e.g.
whats wrong with
It's soooooo much more succinct and easier on the eye |
||||||||||||||||||||
|
|
|
Complacency with duplicate code. Two blocks of code which are initially identical are a maintenance headache. They are going to gain differences over time due to being used differently, yet there will be cases where the same fix has to be applied to both similar but non-identical parts. You can try distinguishing after the fact between a fix that should have been applied to the other copy of the code but that was overlooked, and a fix that deliberately wasn't applied to both. It will make your head hurt. I did code reviews of prospective hires a while back, and realised that the main bar that most applicants needed to get above was nothing fancy - not good Object Orientation, appropriate use of Design Patterns or the like, but just plain old factoring of code into well-named, re-usable methods. I.e. avoiding the "100s of lines of repetitive code in button click handler methods" pattern. This was discovered with "structured programming" in the early 1970s, before most of those applicants were born. |
||||||||||||||||||||
|
|
|
Another Java/.NET one (this SO question is just great for letting off steam...) Myth: "Value types live on the stack, reference types live on the heap" Reality: It's more complicated than that. C# doesn't actually differentiate between the heap/stack behaviour, and the CLR could potentially do funky things with objects which can never escape from the current method. However, taking existing C# behaviour and ignoring special cases like stackalloc and captured variables for anonymous functions and iterator blocks. First let's talk about variables. Variables have a context - either they're local to a method, or they're static, or they're instance variables as part of either a value type or a reference type.
The value of the variable is stored wherever the variable conceptually lives. So an integer variable which is part of an object will always be on the heap (contrary to the myth). A variable which is part of a value type will live wherever that value type instance lives - which may be on the stack (e.g. if the containing instance is the value of a local variable) or on the heap (e.g. if the containing instance is the value of an instance variable in an object). That's probably a very confusing explanation because I'm rushing to get to lunch, but basically the myth is far too simplistic, partly because it doesn't talk about variables (or more generally expressions) at all. The context is very important. |
||||||||||||
|
|
|
Performance isn't that much of a problem until performance becomes a problem. No matter how much you talk about premature optimisation people keep on doing it, at all kinds of level- there is nothing virtuous in writing 2000 lines of compiled code when you could have written 20 lines in a dynamic language just to save 20 processor cycles when your processor is running 95% idle anyway. If the time comes when performance is a problem you can fix it then, but basing all your decisions on the assumption that it will be wastes everybody's time... |
||||||||||||||||||||
|
|
|
I call it "coding from the hip", but it really is a specific category - a better name may be "overimperative programming" or "structureless programming": The code is structured as one or more function implementations (e.g. of the main function in a C program, or of a set of user interface event handlers in a .NET end user application). The code inside those functions was written line by line, by determining the next thing that needs to be done, writing a line of code to achieve that, and repeating this until done. When a case distinction needs to be made, an if statement is added, then, line by line, all the code for what happens if the condition holds, then the else clause is added, then the code for the then part is copied over and modified until it is the code for the else part. So complex condition checking appears as an arbitrarily large tree of nested ifs. Iterations were traditionally programmed by jumping back to some point with goto, then tweaking until everything seems to work, but Dijkstra's protest againt this has become too strong so now the tweaking is done with for and while loops. All iterations are programmed by explicitly creating arrays for the data to be used for each case, then filling the array using an integer index variable (without explicit numbers we lose track of where we are, don't we?) followed by another such loop to read and apply the data. More complex data are stored in multidimensional arrays or arrays of arrays and structs; other data structures are absent, pointers are a mahjor source of bugs, when used at all. All variables and arrays are treated like an assembly language writer's memory locations, so they are all global, have meaningless names, or incorrect ones due to being randomly repurposed. Correcting index bounds and array overflows are the programmer's main sources of debugging time. Rewriting and extension code is done by scanning for points at which a change or extension is required, then adding and copy-pasting statements and ifs in the usual way, then tweaking the result until it appears to work. This is not always a result of ignorance: sometimes the programmer got so little time, or so incrementally, that there wasn't time to think about design, Nor is it always bad: if the resulting code is small enough, there may be nothing wrong with it. The main danger of starting out programmers on a diet of assembler or C (or an similar subset of some other language) is that they fail to proceed beyond this stage. Most of the well-known programming improvements techniques (no goto, sensible naming, advanced data structures, structured programming, libraries with APIs, object-oriented programming, functional programming, layered architecture, patterns, refactoring, etc.) are attempts to help them do this, either by incremental fixing or by starting out in a radically different way. |
|||
|
|
Programmers who build XML using string concatenation. |
||||||||||||
|
|
|
Treating coding standards as absolutes is my pet peeve. Coding standards are good things that improve readability, but there are always exceptions to the rule. The classic example is the "one return per function" rule. Sure, it's good to limit the number of returns in a function, but there are situations where multiple returns are preferable to contorting your code to use one return. |
||||||||||||||||
|
|
|
There's a couple of things. One is the same thing you pointed out - lack of proper understanding of Unicode, assuming that all text is represented by a lit of single-byte characters (as pointed out by the powers-that-be). The other is developers who don't take the time to actually understand what something does or how the specs are defined, but just work simply by trial and error until they find something that works for their particular position and just use it. Then get surprised when it fails under different input (and often will go off and add convoluted if-else clauses, after more trial-and-error work of course, to handle all these anomalous data). Oh, and as a corollary to the above - IE. There are so many elegant, powerful techniques that you have to abandon simply because of poor implementation in that browser - and when they do get fixed (it's getting better, I'll admit) you still can't use them for another few years until the majority of the public stops using the buggy versions. IE 8 looks like it will finally allow you to have a cookie string of more than 4k without effectively deleting all cookies - but how long until one can write code without having to guard against it? |
||||
|
