Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Are there available somewhere numbers of how much time is needed to learn programming languages?


I do understand that this does, very much, depend on the person/learning-method. But I'm more interested in seeing some dynamics among languages, which I guess would be less 'personalised' - i.e. I would like to see division between HARD & EASY languages

share|improve this question
4  
This is a very open ended question. Define learn? Most people never stop learning stuff about the language they use (there is so much depth). Hard and easy is also fairly open. It is hard to program a web browser in Assembly. But it is easy to manipulate memory. – Philip Whitehouse Jan 1 at 0:20
Exactly 21 days, according to some dusty books I have. – Fls'Zen Jan 1 at 0:37
No - there is no such data would be also an answer... – dnsmkl Jan 4 at 16:03

closed as not constructive by John Saunders, rene, Ken White, Alison, Barmar Jan 1 at 0:42

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

1 Answer

up vote 1 down vote accepted

Well generally speaking, a language is only as hard as the libraries it has. Take the Windows API for C. It's hard and at many times inefficient for making programs to do simple things. That's where .NET framework comes in. You can still use C++ with the .NET framework. The language isn't any easier, but the libraries you are using are easier to work with.

Learning Java takes quite a while, especially for a beginner. However after my first 5 minutes in java I understood the Swing library and could make a simple program. If I wanted to do the same with the Windows API it would take me a good month.

In the end, mastering and understanding the innards of languages is time consuming, but is directly proportional to the effort spent.

C++ can be learned in 21 Days (as the book goes) but it takes years to fully understand it.

share|improve this answer

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