vote up 1 vote down star

Possible Duplicate:
Which is more advantageous: Learning new languages or increasing knowledge of ones you already know?

To call myself a good programmer, is it always a condition that I must be able to master many languages?

flag
If anybody can,please improve the content of the question.(revise it).Its a wiki. – vacko Oct 18 at 15:05
2  
Duplicate: stackoverflow.com/questions/1137113/… – Imagist Oct 18 at 15:08

closed as exact duplicate by Pascal Thivent, Sinan Ünür, therefromhere, Shoban, dirkgently Oct 18 at 15:17

12 Answers

vote up 11 vote down check

No. Instead, try to learn a few languages that foster different approaches each.

E.g., if you know C# then learning Java won't teach you much, but a functional or dynamically-typed language will teach you a lot.

link|flag
1  
having C# (object oriented) haskell (pure functional) and python (dynamic) on your resume would show you can solve problems in a variety of ways, making you a better programmer. (can have any OO, functional and dynamic language, not just those. :D – CrazyJugglerDrummer Oct 18 at 15:10
vote up 12 vote down

May I quote Andrew Hunt from the book the Pragmatic Programmer? One of his mantras is: "learn one new programming language at least once per half year".

The importance of learning a new programming language is becoming better at using domain specific solutions. If you learn XSLT 2 you find out that it is much easier to use then C#, PHP or Java when it comes to transforming data in another format (text, html, xml etc). Master Regular Expressions will help you with text processing in many languages.

Understanding functional programming (F#, OCaml, Haskell) vs. declarative programming (HTML, XSLT, ASP.NET) vs imperative programming (C#, Java, PHP, Perl) and object oriented programming (Java, C#, C++, Eiffel, Python) vs procedural programming (Perl, VB, PHP, Pascal, Ruby) will make you a better overall programmer: knowing C# will make your PHP code better. Understanding Haskell makes it easier to follow and learn LINQ and XSLT.

The first language takes time. The second language a bit less time. From the third (main) language onwards, it becomes easier and easier to learn new languages, until you instantly understand a certain structure and you can write correct and solid code within hours in a new language.

link|flag
+1 for the pragprog quote – orip Oct 18 at 15:24
+1 for the breakdown of functional, OO, procedural, etc. languages. – ThisSuitIsBlackNot Oct 18 at 16:22
vote up 5 vote down

A programming language is just a tool: learn to learn new languages by having a solid base in architectural principles, design principles etc.

link|flag
vote up 4 vote down

Programming is about solving problems. The language you use shouldn't matter. Getting a job is an altogether different thing.

link|flag
1  
In my experience, languages do matter both for actual implementation and for the thinking they promote. Granted, some languages are similar enough to be equivalent. – orip Oct 18 at 15:23
1  
I disagree with the statement, "The language you use shouldn't matter." Choosing the appropriate language in which to solve a problem often makes the difference between a company that sells to a giant for $50 million and a company that dies on the runway. – Imagist Oct 18 at 15:26
The last sentence of my post should not be ignored :) – dirkgently Oct 18 at 15:28
vote up 4 vote down

Reposting my response from here. I don't know why people don't think this is a duplicate question...

This is how I prioritize things:

  1. Choose one of the languages that you use at work and become ridiculously good at it. If at all possible, be The Person To Ask if someone has questions about it, and welcome questions. This will both increase your reputation at work and help you learn the language better because you learn a lot by answering strange questions. For me this language is Python.

  2. Keep abreast of the other languages you use at work. Keeping food on your table is the most important. For me these languages are Java and Bash.

  3. For me this is about equal in priority with #4. Learn the language that you think is the Next Big Language. Even if it turns out that it isn't as long as you didn't pick the language completely stupidly, it will be moderately marketable in the future. For me this language is C#.

  4. Learn a language with a novel paradigm that changes the way you think about programming. This will make you a better programmer in the other languages you use. For me, this language is Haskell (I'm nearly satisfied with my knowledge in Haskell, so I'll be moving to Clojure soon).

  5. For me this is about equal in priority with #6. Maintain the old languages you know (basically, languages that used to fit into 1-4 but don't any more). You don't have to do much here, just look over some old code and see if you can still figure it out. For me, these languages are C, C++, PHP, JavaScript and Perl.

  6. Grab a bit of knowledge in as many languages as possible. Think of this as "tryouts" for your next #3 or #4 language. I make it my goal to look at about one a week. Just like #5 don't spend a lot of time on this, just look over some code people have posted online. I've looked at too many languages for me to even remember, but some that I've recently looked at are Clean, Arc, Clojure, ActionScript, Snobol, OCaml, HLA, Prolog, Squirrel, Scala, F#, Factor, and many many more. I wouldn't claim to know much about any of these languages, but they give me interesting ideas sometimes.

Lastly, the best way to learn is by doing. I often get started in a language by writing a simple poker simulation or a problem from Project Euler. This is especially helpful for learning language gotchas, as you generally don't learn how the language tricks you until you've been bitten by it.

link|flag
+1 - Long answer, but very interesting :) – orip Oct 18 at 15:25
vote up 1 vote down

The thing I don't understand about this question is that it presupposes that there's some cost to learning many languages, as if learning a new language somehow takes away from your life. I'd want to know "as opposed to doing what?"

Anyway, I do believe that learning a number of languages is extremely important, if done with attention to the Alan Perlis dictum

A language that doesn't affect the way you think about programming, is not worth knowing.

link|flag
2  
Of course there's a cost to learning languages. – Imagist Oct 18 at 15:13
What's the cost? Relative to what? "If you think education is expensive, try ignorance!" – Jonathan Feinberg Oct 18 at 16:05
The cost is time and sometimes money (for books, PDFs, etc.). Relative to what isn't relevant. Sometimes ignorance is more expensive, but it's silly to deny that learning takes time and money. The sooner we realize that learning is costly, the sooner we can get down to optimizing it and making sure we gain the most benefit from our investment of time and money. :) – Imagist Oct 18 at 16:40
vote up 1 vote down

If you are a good programmer, then yes, I think you will be able to quickly master other languages. All of the languages are just layers on top of the behavior of the underlying hardware, and thus they all tend to have similar warts.

link|flag
vote up 1 vote down

First, don rush it, try to learn languages with different approaches, dynamic vs static, duck typing vs string typing. Learn how to solve problems, get up to speed with your tools, do a lot of programs, etc.

Being a good programmer takes years, it's about many things, people will start calling you a good programmer before you do it, if you do a simple thing, program, program, program. Then review your program with your peers, and read others people code.

here is an interesting article about this by Peter Norvig

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

link|flag
vote up 1 vote down

Any other tool based job has the same question. You don't call a carpenter a good one because he knows how to use different tools. You call him good because he can do his job well, regardless of the tool

link|flag
vote up 1 vote down

No, but there is a holy-trinity of languages that if you do decide to learn, they will provide you with a stronger understanding of computers, programming, etc.

C - An understanding of pointers and general C-ness really helps you understand things like memory alignment, endianness and memory management.
Perl - There are many solutions to a problem Some exposure to perl will teach you that it's usually the cleaner solution that's best. (I forsee hordes of perl hackers...)
English / LISP - Because I love it.

link|flag
2  
Perl? Really? Don't get me wrong, Perl is an excellent language, but three is a pretty tight limit. – Imagist Oct 18 at 15:20
From thereon, the gain to effort ratio starts falling at a very rapid rate. – aviraldg Oct 18 at 15:24
vote up 1 vote down

Far more important than learning languages is learning the real software engineering process. There are a number of books, sites, and gurus willing to tell you all about the software engineering process, but time and experience will show you the way that works best for you. The major parts are:

  • Problem approach: How to look at a problem statement and extrapolate a set of requirements from it. How to consider, up front, things like failure paths and recovery scenarios. Figuring out what you don't know about the problem space and where to learn what you need.
  • System design: How to take the requirements and translate them into a high-level system. What are the major components and how will they transfer information between them? What are the required inputs and outputs of each section? How can we validate the system both as a set of discrete elements and as a holistic entity? -System Implementation: Start small and work up. Develop unit tests as you go. Evolve the unit tests into larger systems alongside the primary code. Recruit and nurture testers -- both inside and outside the problem space. Stay modular and don't get too attached to an algorithm, process, or design. Be prepared to realize that you've completely missed something elemental and will have to throw out some of the best code you've ever written.
  • System Test: You will never be finished with the code, but at some point you're going to have to let it out into the wild. Know your testers and listen to them. Don't explain why they're wrong when they tell you the program flow is unintuitive. Understand that you're too close to the code and that they're trying to help you.
  • System Maintenance: If you didn't write down what you did, or if your code isn't clear and well documented, it will come back to you. Clever algorithms that aren't documented are thrown out at the next revision cycle. Cool algorithms that nobody understands will suffer a similar fate. Program maintenance is often a starting place for junior programmers, and most of them will throw out your very clever code and replace it with some of their own.

I've written in half a dozen or more languages, including assembly. Language is often used as an excuse for a poor mastery of software engineering basics (i.e. if only we could do {insert language "deficiency'}, all our problems would be solved). As they say, it's a poor carpenter who blames his tools.

link|flag
vote up 0 vote down

Probably not. I think it is more important to use a language appropriately and properly. Collecting languages may be enjoyable personally, but writing effective code is what will get you noticed as a "good programmer."

link|flag

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