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?
|
|
To call myself a good programmer, is it always a condition that I must be able to master many languages? |
||||||
|
closed as exact duplicate by Pascal Thivent, Sinan Ünür, therefromhere, Shoban, dirkgently Oct 18 at 15:17 |
|
|
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. |
||||
|
|
|
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. |
||||
|
|
|
A programming language is just a tool: learn to learn new languages by having a solid base in architectural principles, design principles etc. |
|||
|
|
|
|
Programming is about solving problems. The language you use shouldn't matter. Getting a job is an altogether different thing. |
||||||||||
|
|
|
Reposting my response from here. I don't know why people don't think this is a duplicate question...
|
|||
|
|
|
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
|
||||||||
|
|
|
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. |
|||
|
|
|
|
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 |
|||
|
|
|
|
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 |
|||
|
|
|
|
No, but there is a C - An understanding of pointers and general C-ness really helps you understand things like memory alignment, endianness and memory management. |
|||
|
|
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:
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. |
|||
|
|
|
|
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." |
|||
|
|