vote up -6 vote down star
1

A couple months ago I started a new job where I'm using IDL and PHP, neither of which I had used before. Having done C, Perl, & Python before, learning PHP has gone reasonably well. However, learning IDL has been difficult, since it always seems to do things differently than I expect.

This has reminded me of an interview many years back where I was asked how long it would take me to learn the language they used (RPG in that case), since I didn't know it. Based on my college experience (I was a freshout then), I answered one to three months, stating that I'd be productive but not an expert. While I don't buy their answer (and I never did learn RPG), they told me it would take at least two years! I'm glad I didn't get the job!

Anyway, how long does it take you to learn a new language? What variables (e.g. new paradigm (procedural vs. OOP vs. functional), previous use of similar language) affect this?

flag
Have you "learned" a new language when you can write "hello world" in it, or when you can write a site like StackOverflow from start to end? There is no clean definition of "learn a new language". – Paul Tomblin Feb 11 at 20:41
should be community wiki. – Malfist Feb 11 at 20:41
Since it depends completely on the individual (which none of us can know) and the language, there is absolutely no way to give a useful answer to the base question. There could possibly be some useful discussion around the last sentence of the question. I suspect that may be a duplicate though. – EBGreen Feb 11 at 20:43
I voted this down, because this question can't really be answered. – GregD Feb 11 at 20:43
@Malfist: I meant to do that originally but forgot, was editing it that way when it was closed. – PTBNL Feb 11 at 21:33
show 2 more comments

closed as subjective and argumentative by EBGreen, Juan Manuel, ocdecio, cletus Feb 11 at 21:16

6 Answers

vote up 1 vote down

Languages are pretty easy. Something like 1-2 months gets you most of the way there. You might not know some esoteric (and sometimes useful) points but you should have a firm grasp. Now learning the Libraries and infrastructure around the language can take forever. I have done Java for 10 years now, and there are whole sets of APIs that I have no clue how they work since I have never had to go near them.

link|flag
vote up 0 vote down

Depends on the language. Some special-purpose languages are really simple, and can be learned fully in a day. Others, you can use for a year and still not feel fully proficient with.

Example: Assuming you are an experienced programmer already, but know no C or C++. You will pick a copy of Kernighan & Ritchie's The C Programming Language, and in a week you fully know C. You then start with C++, read through Stroustrup's The C++ Programming Language while trying out a few exercises in each chapter, finish it in a month (of full-time learning), and you'll be able to use it and work on it, but over time still find new things to learn about it, details you got wrong, things you forgot, etc.

link|flag
vote up 2 vote down

There are several aspects in learning a new language. The most important are:

  • Syntax
  • Language features
  • Standard library
  • Conventions
  • Practices and Patterns

In my (short) experience as programmer, the syntax is the easiest part. If you don't know how to build typed languages and started php, you might need some additional time. The hardest part is to learn a functional language if you came from an imperative one.

However, mastering the syntax is not enough. If you really know the standard functions and libraries you are going to be much more productive because you don't have to look for them all the time.

But as general I would say, the more experience you got will decrease the amount of time you need to be capable of using a new language effectively.

link|flag
vote up 0 vote down

I feel like i am still learning. But my first language took a few years until i felt very comfortable (PHP), but i could code reasonably well within a few months (3-4)

The next language took just a few months until i felt very comfortable (python) but i am still learning a lot.

The 3rd language took a little longer (C#) but i am just starting (3-4 months)

But people learn at different speeds as per usual.

EDIT to clarify, i did not learn these on the job, but at home after work

link|flag
vote up 0 vote down

If I have uninterrupted time to tinker, 1 week straight if it is similar to other languages I know. If it is quite different, I budget 2 weeks. I learned Java in 2 weeks at an internship before I finished college, and already knew C++.

BTW, mark as community wiki before you get closed.

link|flag
vote up 4 vote down

This is the best answer to this kind of question I have ever read:

http://norvig.com/21-days.html

link|flag
That isn't a new languages - that's programming in general. Languages are much faster to learn than the whole of programming. – Greg Beech Feb 11 at 20:40
I think the spirit of the article is still applicable. – Andrew Hare Feb 11 at 20:45

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