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

The different between Thread safe and Reentrant.

link|flag
vote up 0 vote down

The hardest concept to grasp for me was Exceptions. And in a way I still struggle with them to this day.

Exceptions are clouded in mystery. On one hand here you have an incredibly flexible built-in idiom for error exception handling. But then you have a myriad of Best Practices rules that invariably, if followed to the letter, turn this whole framework into a rare occurrence in your code. If not even entirely absent.

From performance considerations to idiomatic dogmatism, Exceptions are one area of programming in a language like C++ that feel very much like a tempting forbidden fruit. It's right there in front of you, you stretch towards it, and promptly someone rushes in and slaps your hand. Frustrating.

link|flag
vote up 1 vote down

The "a-ha" moment of functional programming.

I'd seen many people say that learning Lisp or Haskell would make you a better programmer, and that there was a brilliant moment where everything suddenly clicks.

At first I thought to myself "Bah, it's just rewriting loops as recursion. These people are probably just excited about finally understanding recursion."

But after a while I decided that I wanted to be sure. So I wrote a fractal program in Scheme. I thought to myself, "Well, that was interesting. But mainly it was rewriting loops as recursion."

I thought that was the "a-ha" moment. Clearly, I didn't get it yet.

This year, I went to a talk by Conrad Parker, who spent some of his talk on Haskell, and encouraged everyone to learn it. "Yeah," I thought, "OK." And I put some real effort into learning Haskell properly.

I think I had the real "a-ha" moment already, though maybe there's still a bigger "a-ha" moment on its way. Certainly I love Haskell and now I think the hype is justified.

link|flag
vote up -1 vote down

Pointers in C.

If you crack it you know how memory management works.

Thanks.

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

The hardest thing for me was and still is using polymorphism, inheritance, and interfaces correctly. The concept of polymorphism has never been hard for me to understand but one of my biggest realizations in programming came when I started heavily looking at using polymorphism and inheritance to make writing code easier and eliminating duplicate code.

link|flag
vote up 0 vote down

Pointers and memory management.

link|flag
vote up 1 vote down

How to structure my code (which was basically if()s and printf()s) to avoid swapping floppy disks in the two disk-drives too often as the SAS/C compiler did its thing.

link|flag
vote up 0 vote down

I am still struggling with a visitor pattern

link|flag
vote up 0 vote down

template programming

link|flag
vote up 1 vote down

I had a very difficult time understanding Hash Tables in my undergrad courses. I remember being scared anyone would start talking about it. It just made me nervous to think about it.

It wasn't that I didn't understand the concept. I really didn't understand how to properly use a hash table, when to use it, and why anyone would want to use one.

The first real programming job I had required me to work with them. Since then, I have gained a better understanding of how, when & why to use a hash table. I wouldn't say I'm an expert on hash tables, but I no longer recoil in fear at the mention of one.

link|flag
vote up 0 vote down

Why, why should I use something? Before you actually get some programming done and into a programming mindset, it's kind of hard to see where something would be useful sometimes. A lot of examples that are often given are somewhat trivial and convoluted, intended to explain the how to use and now the why to use. Often after looking at such examples someone would end up asking: Well couldn't I have used something else? or Why would I ever want to do that?

An example was my girlfriend was learning javascript for one of her web design classes, and I explained how a for loop worked, but had trouble explaining why she would want to use it, despite using them all the time myself, I had trouble coming up with a simple real life example

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

I'd say that it's the concept of the user. That all programs basically are written for other people and it's for them one should think of first.

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

Windows API in general. &!#$%$"!

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

The balance between trying to solve the problem directly in front as quickly as possible and trying to develop a solution that would be reusable under all conceivable circumstances. Writing code that solves the problem expeditiously, can be extended without a huge rewrite/redesign, and suggests itself for re-use.

link|flag
vote up 1 vote down

When something doesn't behave as expected, I'm almost always the problem.
The things that are almost never the problem include

  • The Compiler
  • The Network
  • The Database
  • The Operating System
  • The Application Server
  • The IDE
  • The Third Party Library

This is not to say that they cannot be the problem but I better assume that I am the problem and prove that I am not the problem before I spend time looking at any part of the above list.

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

For C/C++, it was always pointers and references that blew my mind. I was young at the time, though.

In Java, threaded programming hasn't necessarily blown my mind but it always ends up being stickier than originally anticipated.

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

Threading!

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

I've found that variables can be a hard thing for designers learning to write code with no math background. I've had many forehead slapping moments trying to explain this to them. ("what do you mean you don't know what a variable is? didn't you take basic algebra at some point in your life?...")

link|flag
vote up 0 vote down

These are the things that I find new developers have the biggest problems with:

  • Variable scoping in ASP.NET. It wont be there when you next post back!
  • Just because you IM'ed or emailed me doesn't mean I'll be responding immidiately
  • It's better to try and fail than to not try at all
link|flag
vote up 0 vote down

Functions. When I started programming (in C, at 14) I had a hard time understanding what are they for and use them appropriately. Couldn't we just put all the code in main()?

link|flag
vote up 1 vote down

The difference between server side and client side in Web App programming

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

Starting out, following the 'C' text book was pretty easy - and so exciting I stayed up half the night writing the little example programs to subtract two numbers etc. etc.

The hard part was going from there to writing programs that actually do something useful, organised into fuctions, classes and modules. In my first holiday job I was writing some test software for a hardware engineer and I wrote the whole thing as one big function :-) the hardware guy didn't notice anything wrong but on my last day another software engineer realised what I'd done and took me to one side and explained about using separate functions...

link|flag
vote up 0 vote down

A couple of decades ago, but...

Moving from BASIC to Z80 assembler was difficult. Just coming to terms with how sparse a language z80 really was. (and it was positively rich by comparison to 6502)

Some time later, the move from Pascal to C I found more difficult than I should have. So many symbols, so few words.

C++ was never a problem, but templates caused a bit of confusion at the time as did moving from home spun loops to iterators.

link|flag
vote up 1 vote down

I had no problems with pointers, pointers to pointers, method pointers, etc..., but I got started with assembly very early, before learning C/C++, so that may be the reason. What took me a long time to get right is good class design, with all the intricacies of abstract classes, interfaces, inheritance, design patterns. OOP is deceptively easy, but it can be tricky to get right when you start dealing with more than a half dozen related classes. I still look at code from 1990-1995 and cringe.

link|flag
vote up 0 vote down

I find that most junior programmers have a hard time to know when and how to use singleton and statics in OOP. Especially if they come from a functional/procedural background. They most often use them to namespace their functions.

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