Possible Duplicate:
(Why) Should I learn a new programming language?
I came across a line in this article which is,
Learn one programming language every year
Why do good programmers suggest to learn more programming languages . We can be a jack of all and master of none too in this case.
6
I have not read the article, but I have seen this specific piece of advice many times over, it is common knowledge.
The original piece of advice, does not refer to mastery that comes after years of experience, but to exposure on different paradigms that will provide the individual with different approaches on solving problems. So there is a footnote somewhere missing that would say: “Different programming paradigms”.
A good but not so relevant post on how different approaches to programming affect problem solving is this post by Steve Yegge Notes from the Mystery Machine Bus.
7
Our trade is programming. Programming languages are tools of that trade. Learning multiple languages isn’t being a “jack of all trades,” it’s being a master of the tools of one trade.
6
-
Because life rarely lets you get by with a strategy as simple as “I will become an expert in X and ignore all other fields.” It more difficult and more subtle than that. Developing an area of deep expertise is essential but you also have to keep your eye on developments outside your specialty. Over decades the industry inevitably changes. If you don’t keep up with developments outside your specialty you can miss the appearance of superior tools, miss the rise of new markets, and end up stuck in a niche market. How you balance the time you spend on deepening your primary expertise vs. expanding your knowledge is a judgement call. In your first few years almost all of your time will be spent going deep, but as you mature you’ll want to spend more time branching out.
-
Not all languages are equally effective for all tasks. CGI is a pain to do in C, and you aren’t going to be writing device drivers in JavaScript. The folk wisdom is “If all you have is a hammer, then all the world looks like a nail”. Knowing multiple languages helps you make judgments about what the right tool for a job is.
-
Learning other languages will help you understand your primary language. If you only know one language you’ll have a host of unconscious assumptions that are actually design decisions. Learning multiple languages will help make you aware of you assumptions.
-
Once you’ve learned three or four languages learning another one becomes pretty easy.
Why do good programmers suggest to learn more programming languages
There are a couple of different ways I could see this being quite useful:
-
Getting different perspectives. If you’ve looked through a lot of procedural, OO, and functional code you can see very different ways to approach a problem and this can be useful to have many different tools in one’s toolbox. The breadth can be useful since more often someone will want something fixed and doesn’t care at all about what language is used. “Just get it done!” will be what the client or customer’s focus yet there are likely multiple ways to implement a solution. How many do you naturally consider and how many others are out there? This is more about how to be open to what choices are available which can be more than a bit mind numbing to consider all of them. Thus, trying to make this bite size and just do one at a time can be quite useful.
-
Preventing lock-in. By adding another language, there is a chance that there will be some new pieces that may require some adaptation. How do you handle things changing? By taking on a new language regularly, it can help prevent the perspective of thinking everything can be done in one language or with one framework. Technology changes often enough that the skill of how to pick something up from scratch is well worth having honed, and that is part of the benefit that comes from this practice. If someone just coded in C for 20 years and didn’t touch other languages, it may be challenging to see how well this person would adjust to a language with a very different syntax and overall structure.
While I have yet to truly master any language, I’ve learned a few well, and I’ve used/dabbled in many. With each new language I pick up I get better at the others I know. Learning each new language teaches me to focus on core disciplines that work across them all. Thus learning new languages makes me better at software architecture, better at choosing and using data structures, I learn new things about my text editor/IDE, and I get better at communicating ideas in a less language-specific manner (to name only a few benefits.)
It helps to know more than language, you can more easily talk to more people. It is true with foreign languages, it is also true with programming languages.
First of all it’s a good training for your brain. You learn new ways of doing the stuff you usually do. Sometimes you’ll find that your common tasks are more easily done in a different programming language.
Second of all when your main programming language gets worn off, you will be able to switch to another one easily.
You will also be able to get along with 3rd party software developers. Knowing limitations and strengths of various different languages you will be able to predict what will be difficult to implement in a given language.
Also remember that programming skill is independent of a programming language. It’s like knowing how to speak. If you know how to speak in one language, you just have to learn new vocabulary and new grammar to properly speak in another language. No need to learn how to use your tongue, vocal chords, teeth, etc.
From another answer, I’ve always thought “learn one programming language every year” was terrible advice for novice programmers for exactly the reason you state.
A novice programmer needs to learn far more than one language in short order:
- A general purpose scripting language such as python or perl
- A faster language, typically a compiled language, because python and perl are too slow
- Some familiarity with the shell
- Some familiarity with make
That’s a minimum. Add Matlab or Mathematica for someone working in scientific programming. The simulation environment often is a language if you’re working on simulations. For someone working on databases or games, that database or physics engine are in a sense languages of their own. A GUI adds yet another piece of complexity.
It’s the novice programmer who faces the steepest learning curve. Learning a language a year is a piece of cake after having accomplished that initial step.
0
If learning a new language strikes you more as a task than a joy, you may have picked the wrong profession.
It’s like a musician not wanting to learn a new instrument–they may prefer one and be better at it, but one who loves music should always be interested in exploring new options that might be provided by different instruments or styles.
Also, learning a new language may provide you insights into programming styles that you can apply to other languages. A language could teach you to write your code to be more readable or take advantage of various patterns… It’s just part of being a programmer to be constantly learning.
Think like a chef. If you learn a new cooking technique, if you learn about a nice spice to add to your dish, or if you learn a new preparation for a given ingredient set, you expand your abilities. You can add some flare to your cooking abilities.
The same is true with programming. Some tools are better for some tasks than other, and different programming languages can help differentiate between how to solve problems in different ways. It helps to have diversity in how to solve problems.
I agree with dimitris mistriotis, but I can also mention that if you read a lot on the theoretical topic (such as OOP, functional programming, agile practices and many other…) you don’t really need to know more languages than those you use. But it is a matter of personal opinion, I guess.