vote up 34 vote down star
13

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 68 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
3  
@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 1 vote down

When I was a 9yo kid learning BASIC from the book that came with my computer, it took me a while to realize that NEXT jumped back to the top of the FOR loop.

link|flag
vote up 2 vote down

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

link|flag
vote up 0 vote down

I struggled with pointers when I started doing C++.
I think I suffered from not learning enough C first.

What got me through it was a combination of re-reading the textbooks and sitting with a text editor and a compiler and trying things out until it all came together in my head.

link|flag
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 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 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 17 vote down

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

link|flag
show 2 more comments
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 0 vote down

It took me 2 months to finally understand OOP, then it took me 2 more weeks to actually GET IT, then functional programming is still giving me a bit of trouble.

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

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

link|flag
vote up 0 vote down

Linked lists and sorting.

I was just about 12 years old statring with pascal. Up till then I was only aware of simple arrays and strings and then my uncle introduced me to the wonderful world of pointers that point to the same struct as the one they are in.
After I figured that out he tried to teach me quicksort but that was a tad too much.

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 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 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 1 vote down

I think that in general the hardest part is the general shift the way we thing, programmers think about most things differently then most other people, especaily when presented with a problem. When I speak with other computer people I can usually tell right off the bat weather or not they are a programmer, just by the way they think. When confronted with a problem a typical person looks at the problem as a whole and tries to "eat the entire elephant all at once", but when a programmer gets a problem they instictivly break it down into smaller easier to chew bits.

This way of thinking is not something that can be taught in a class room, some people are born with it others learn it. And I think this process of learning how to think is by far the hardest part of becoming a successful programmer.

link|flag
vote up 1 vote down

Hardest concept for me has always been Windows geometry. From the origin being the top-left, to viewports and mappings and dialog units and dpi, from screen co-ordinates to client co-ordinates it has always a bit of a mind fornication trying to get drawing and hit-testing code right first time. And that's without mentioning rounding errors (which have caused me no end of headaches in the past).

I find it all much easier now because I've been burned in the past, but still, that was a hard thing to get my head around initially.

Besides that, the concept of what was the language and what was provided by a library was also a concept I initially struggled with. Such as "for" is a language keyword whereas "printf" is not.

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 32 vote down

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

link|flag
show 1 more comment
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 1 vote down

For me I would have to say it was many levels of indirection. Whether it was assembler or C having pointers pointing to pointers or arrays of pointers. It gets messy pretty quick. Not to mention the additional level of confusion that segments could add to the equation on Intel 16 bit processors.

I think universally most people don't grasp memory management. Whether it's allocating and de-allocating memory and resources in C or creating collections of objects in an OOP language. The reason that I say this is because so many people get it wrong.

link|flag
vote up 8 vote down

How to avoid duplication.

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 0 vote down

Pointers had to be one of my biggest problems I struggled with. Referencing and Dereferencing them, etc. I overcame the problem by following tutorials and reading as much as I could about them. It was a happy day for me when I figured them out.

link|flag
show 1 more comment
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 0 vote down

Can't remember what I struggled with, it's been too long and I was too young.

That being said, what I see most OO programmers struggle with is NullReferenceException. So many people can't grasp that you can't call methods on null.

link|flag
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 0 vote down

Pointers were damn confusing.

One thing that also bugged me was optimising my code, I never knew when to stop with the minor performance tweaks that make so little difference they weren't worth the time to implement.

link|flag
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 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
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.