vote up 35 vote down star
14

When you were starting to program, what was the hardest concept for you to grasp? Was it recursion, pointers, linked lists, assignments, memory management?

I was wondering what gave you headaches and how you overcame this issue and learned to love the bomb, I mean understand it.

EDIT: As a followup, what helped you grok your hard-to-grasp concept?

flag
1  
Are you a beginner? We like to know your answer too ;-). – Gamecat Sep 28 '08 at 20:43

71 Answers

1 2 3 next
vote up 70 vote down

The compiler works fine, it's the code that's wrong.

link|flag
4  
I had an argument with another senior the other day about the fact that computers don't make errors, they execute your commands very precisely. No matter how "random" the result is if you can reproduce the exact steps you'll get the same problem – Slace Sep 29 '08 at 11:28
4  
@Stace: not true, a CPU is basically an analog device approximating digital behavior. Just heating it a few degrees too much is enough to introduce truly random behavior. – Joeri Sebrechts Sep 29 '08 at 11:35
1  
@Joeri: yes, but how often is that the real reason for a failure when the computer is blamed? – Joachim Sauer Dec 6 '08 at 23:27
1  
Ha ha ...! I can't tell you how many times someone has told me that there must be a bug in the .Net framework or the compiler! – Charles Conway Sep 12 at 0:08
show 4 more comments
vote up 47 vote down

I guess that for a C programmer, the first hard concept would be pointers. Especially references (&) and function pointers. This would require some inner understanding of the computer, which many beginner programmers don't have. Also, pointer arithmetic isn't always simple. For other languages, this could be anything from variables to OOP. This really depends. From what I've seen, I guess it might be procedural programming, because this requires some change in the way of thinking, and might even require the new programmer to design (!) his/her code.

link|flag
vote up 32 vote down

Regular Expressions! I still need a reference when I use them.

link|flag
show 1 more comment
vote up 21 vote down

That's gotta be lambda calculus.

link|flag
3  
Lambada? As in certain über-sensual Brazilian dance? Must be because it makes you dance!! :D – Joe Pineda Sep 29 '08 at 15:40
show 2 more comments
vote up 17 vote down

How best to divide up a program into modules/classes.

link|flag
show 2 more comments
vote up 17 vote down

Lots of people cite OOP but basic OOP really isn't that hard to understand because you can give fairly visible real-life examples of how objects work.

I found the grittier sub-topics of OOP harder to understand. I'm talking inheritance and polymorphism. I read a lot of definitions of both at university and I understood what they were saying, but I didn't understand why I'd want to use either until after I'd done a couple of large coursework projects.

Some patterns made me wonder "why?" too. If you're trying to learn, you really need a full example to see where you'd want to implement them because one-line definitions don't cut it.

Thankfully pointers made sense to me when I learned C. They're fairly logical and it was only the syntax that caused the initial problem.

MVC (in webdev) was another "why?" topic for me. I'm used to separating my data-logic from display-logic, from display code, so it seemed like what I was doing, which probably exacerbated my problems in getting used to a fixed way of doing it.

Version control is a very important topic that lots of people put-off learning until they're forced to at gunpoint.

Functional programming is something I'm still putting off learning. Again, because I can't see the point/benefit.

link|flag
1  
I don't think people have a hard time understanding OOP as much as they do using it in practice, and using it efficiently. Well designed OOP takes a lot of time and practice. – Spodi Sep 28 '08 at 22:27
show 1 more comment
vote up 17 vote down

That someone else would someday be fixing my code.

Hard to grasp, but also the thing that had the most influence on making me a better programmer.

--
Bruce

link|flag
2  
True, especially the fact that "someone else" is normally you in 6 months, after you've forgotten all about those weird special cases and what they were for – Daniel Magliola Mar 5 at 19:50
1  
Daniel, it didn't really make me a better programmer until I realized it would not be me in 6 months. – bmb Mar 7 at 17:17
show 3 more comments
vote up 14 vote down

I can't say I came across these as a beginner, but:

  • Continuations aren't immediately obvious, and I wouldn't want to be a compiler writer with the job of implementing them (which is probably why so few languages support call/cc)

  • I still don't grok how monads give rise to purely functional I/O in Haskell, mind you I haven't used Haskell since a semester class at University years ago, and have never done any I/O in it.

link|flag
vote up 13 vote down

Threading!

link|flag
show 1 more comment
vote up 12 vote down

References in C++. It took awhile for me to accept the fact that

int &x = a;

means that x becomes an alias for a. Not a copy of a, not a weird pointer to a: x is a.

link|flag
show 2 more comments
vote up 12 vote down

Variables. Or more specifically, the fact that a variable is not the same as the value, that it represents.

I actually took a while before fully realising this, but it made a lot things much clearer. Now, I often recognise the same fallacy with lesser experienced programmers.

There are a lot of things that are technically much more complicated, but understanding these fundamental leaps of abstractions are usually very hard.

link|flag
show 5 more comments
vote up 11 vote down

The beauty of simplicity.

In my early years I always preferred a solution that was harder to grasp because it seemed "geekier".

link|flag
show 2 more comments
vote up 8 vote down

How to avoid duplication.

link|flag
vote up 8 vote down

For me the hardest concept was Generalized recursion. Not the divide and conquer style like in q-sort, but the Lisp style loop via recursion. Mostly I took forever to get around to it. I saw it now and again but never really tried to figure it out. Once I actually worked with it (in a CS languages class) it became really clear and VERY handy (I do a fare share of template meta programming).

link|flag
vote up 8 vote down

Performance != Optimisation

rephrased "Performance != The Highest Objective" -BCS

Performant code is fast.
Optimised code is elegant and easily extensible.

link|flag
1  
I think I have to disagrees with your wording on this. I get your point and agree with it but, IMHO optimization == improving performance (generally space or time usage). I think it would be more accurate the say "Performance != The Highest Objective" – BCS Jun 2 at 20:24
show 1 more comment
vote up 7 vote down

I didn't truly get OOP until about a 12 or 14 months ago. It took exposure to Smalltalk's paradigm of messages being the primary language construct to shake me up.

link|flag
vote up 6 vote down

I think that there are several skills that a good programmer needs: the ability to abstract, the ability to think recursively, and the ability to imagine complex networks.

Since beginners have different aptitudes in each, their problems correspond: bad design/modularization/functional decomposition, recursive algorithms and structures, pointers.

It's also interesting that a lot of people (more math oriented) are good with pointers and algorithms but horrible in abstractions and decomposition. The converse is also true. I consider this to be the gap between good classic CS folks and good engineers. Very few people can fit in both categories, unfortunately.

link|flag
vote up 6 vote down

Designing loosely coupled, maintainable, extendable, reusable objects(Interface) in OOP.

link|flag
show 1 more comment
vote up 5 vote down

Everything other than writing the code, without a doubt. I borrowed or bought many C books in my early days, but suffered for years trying to understand how to really build software. None of these texts talked about anything more than writing a single small program, completely self enclosed. I wasn't exposed to detailed understandings of compilers, modules, linkers, source control, and all the other not-writing-source-code activities that often make up the bulk of development work.

link|flag
vote up 4 vote down

When I started, OO was this weird out there thing that only awesome people must be using. Then one day, I took the time to sit down and force myself to understand OO. I don't know why I waited that long, it makes a lot of sense and clicked pretty quickly.

link|flag
vote up 4 vote down

The thing I found hardest to grasp when I was starting out when I started to program was not a programming technique, it was the weird and wonderful world of impedance mismatch. I would sometimes work for days on a feature that no one really wanted, because I listened to my boss or to a marketing person and simply did what they told me.

The lesson learned was that I should always try and "get in the customers head" and really grasp what it is that they want. When you start out programming you are constantly presented with solutions, the key is to learn how to breakdown these solutions and turn them into real business problems, before you spend way too much time on the presented solution.

alt text

link|flag
show 2 more comments
vote up 3 vote down

Polymorphism was one of the weirdest concept for me to wrap my head around. Not because it was complex, but because I almost immediately understood it, but not how to use it. I was trying to make function that worked with a specific class and pass them subclass members parent class members, I was casting were I shouldn't have been, and I expected everything to work out fine. Later I learned how to structure the problem to fit the tools I had.

Learning the reasoning behind the tools is far more important to me than simply this is how to use the tools.

The exact same thing happened to me with pointers. I immediately understood the concepts, but I has no idea why such a convoluted tool existed. Then I made my first linked list. Wow, what an epiphany. Not only was there way to use this, but it did something that I was so oblivious to that I had to change the way I looked at coding. These were two of my major windfalls when it comes to coding, I am sure that I will have more I just need to keep trying to understand as much as possible.

When you learn something new, make sure that shortly after you understand the syntax, that you understand what problems that tool was intended to solve and can solve. Learning what problems it should solve can help you prevent from deploying them incorrectly, and eventually let you deploy them in creative and novel ways that still make sense.

link|flag
show 1 more comment
vote up 3 vote down

For me, this was definitely Domain-Driven Design.

I found that most of the concepts of OOP were fairly simple to get. Polymorphism, Inheritance, Encapsulation (in theory at least), etc. are all simple concepts up front, but actually being able to look at a problem domain and understand how to use those tools to effectively design your system so that it is extensible and maintainable is literally something that I'm still working on (and I'm 4 years into this).

However, making that conceptual leap from just randomly using those ideas in my code whenever I felt like it made some sort of weird sense to actually saying, how does my domain require me to use OO Principles in order to make this code as maintainable and clear as possible?, was huge and very difficult for me to wrap my head around.

link|flag
vote up 2 vote down

When I started the most confusing things were pointers and OO-Concepts.

link|flag
vote up 2 vote down

Not sure, but function pointers where a bit strange to me in the verry beginning.

link|flag
vote up 2 vote down

The first concept I had trouble understanding was variables when I tried to learn Visual Basic (my first language) many years ago. The book I was using never bothered to explain them properly, and the whole notion of "Dim X as Variable" was alien to me: Why would you need to declare variables before using them? What is the keyword called 'dim'? Why do you need variables if you could use the values directly? etc.

Then when I learned C some years later, I had trouble with pointers. I understood how to use them, but I couldn't understand why you'd need them. I guess when trying to explain difficult concepts to beginner, you should always try to give them examples of real practical use. The C tutorial I was following said you could use pointers to allocate heap memory, but didn't tell me why I'd need to allocate memory.

I never had trouble with OOP. It seemed pretty logical and intuitive to me. It's closer to the way people think.

link|flag
vote up 2 vote down

Monads have always been somewhat opaque to me. I understand the basic laws and such, but anything beyond Haskell's Maybe monad is a little beyond me right now.

link|flag
vote up 2 vote down

For web development, it seems to be the difference between client side (Javascript), and server side code (PHP, ASP.Net, Java). I don't understand why, I've never had problems with it myself, but it seems to be a recurring problem among many developers posting on forums. People continually post questions about how to use C# to run some code after the page is finished loading, or how to use Javascript to store form information in a database.

link|flag
vote up 2 vote down

Project management

Requirements, specs, interface documents, architecture docs, test plans, etc.

It took a while, but it went from "unnecessary overhead" to "absolutely necessary" to do anything maintainable.

link|flag
vote up 2 vote down

Research shows that there are three problems that most new programmers/students have:

1) Getting assignments.

a = 2;
b = a;

-> Value of a & b? Lot's of people don't even pass this step.

2) Recursion

3) Locking / Multithreaded programming.

The last one was the hardest for me to get.

link|flag
show 2 more comments
1 2 3 next

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.