vote up 36 vote down star
15

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

prev 1 2 3
vote up 3 vote down

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

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

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

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

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

link|flag
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 71 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
prev 1 2 3

Your Answer

Get an OpenID
or

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