vote up 40 vote down star
14

The stereotypical programmer is very keen on writing software in one particular programming language and is very fanatic about defending their programming language in any way they can, without being realistic about whether their programming language is the best tool for the job.

The other kind of programmer can take a step back and switch between languages (or is not very concerned about doing everything in just one language), is a "jack-of-all-trades", and doesn't mind learning a new language as long as it solves their problem in a good fashion.

Did you ever switch from one programming language to another? If yes, why?

[P.S. Please don't just answer with "I switched from language A to B because company X sucks! I think it will be very useful to understand why people switch between languages, or what's the best tool for a particular kind of job]

flag
1  
what makes you say the stereotypical programmer works in one language. Most I know work in many (Javascript, some backend language, XSLT, shell scripts, build scripts, etc.) – grom Nov 26 '08 at 8:49
show 1 more comment

113 Answers

1 2 3 4 next
vote up 85 vote down

I started in Basic

need speed

Then Assembly

need sanity

Then Pascal

need gui

Then Delphi

need work

Then Perl

need fun

Then ActionScript

need objects

Then C#

I skipped a few (php, COBOL, C, C++, Java) for clarity.

link|flag
7  
Nowadays I use the best tool for the job, I am "language-agnostic" – Sklivvz Sep 21 '08 at 20:47
1  
Basic -> assembly must have been an interesting paradigm shift. :-) – Ben Blank Jul 16 at 0:19
show 7 more comments
vote up 42 vote down

If you get the concepts right, learning a new language is hardly any trouble. The tough part is learning the platform and idioms. Those who say they know Perl and PHP, Java and C#, usually mean they know CPAN and PEAR, JDK and .NET.

Edit: All of the languages above are procedural, that's why the are so similar. A programmer should know two kinds of programming languages, functional (e.g. Haskell, Lisp) and procedural (e.g. everything else). And no, HTML is not a programming language.

link|flag
1  
Prolog is neither: en.wikipedia.org/wiki/Declarative_programming/… – crashmstr Oct 8 '08 at 19:33
1  
+1 For mentioning functional languages and the HTML point – Draemon Oct 23 '08 at 23:35
2  
Prolog, and SQL, are "declarative" programming languages because you declare what you want, you don't describe the procedure for getting what you want. – jmvidal Jan 31 at 2:15
2  
@Omar: Depends on what you mean. The difference between OO and procedural is far less than that between OO/procedural and functional. – erikkallen Sep 29 at 13:45
1  
@Omar OO > Procedural. That means that usually OO is procedural but procedural is not always OO – AZ Nov 19 at 14:26
show 3 more comments
vote up 19 vote down

This is an experience/age related question. As you gain more experience, languages come and go. Although there's certainly merit to being extremely experienced in one language, most likely for your career, you'll end up knowing 5 or 10 languages. I suggest that you seek out opportunities to learn different languages and it will give you different ways of looking at a problem.

link|flag
1  
True true... But it's sometimes hard to find an opportunity in new / upcoming languagues like Groovy, Scala or Erlang so it's often easier to stick with what you know best (if there are still interesting projects to be found, of course) – Johan Pelgrim Sep 21 '08 at 19:51
1  
I know people who have been coding for over a decae and stay with the same language. Perl and C++ seem to be bad for this. Plus Alot of Java devs wont touch anything else. – Omar Kooheji Feb 12 at 11:04
show 1 more comment
vote up 17 vote down

They say that if all you have is a hammer then everything looks like a nail. Different languages have been designed to solve different problems. If you know several languages, then when a problem comes along you can look into your toolbag and pull out the right one to solve the problem at hand instead of using a hammer where a chisel would be better.

link|flag
vote up 12 vote down

Did you ever switch from one programming language to another?

Why yes I did! How could you know?

If yes, why?

Because the world changes. Once upon a time every computer came with a BASIC interpreter (or two). These days I have no idea how to lay my hands on one. Instead, my computer contains least Python, perl, Ruby and the whole GCC.

I started with BASIC. Now it's mostly Java and Javascript at work, Python at home. Next target... perhaps Erlang. Or Arc.

Besides personal language overhaul, the industry has gone from C/C++ to Java/C#. The world turns and we'd better turn with it or risk becoming the next generation version of the suspender wearing COBOL-hackers, who lurk in the dark hallways of most large companies.

The stereotypical programmer is very keen on writing software in one particular programming language and is very fanatic about defending their programming language in any way they can, without being realistic about whether their programming language is the best tool for the job. (emphasis mine)

GET OUTTA HERE! In my world, the stereotypical Programmer uses the best tool for the job. Period. Punkt. Piste.

Even the most stubborn one-language guys eventually give in. I've seen this a lot lately when former C++ or Java programmers discover Python or Ruby. Their eyes used to burn with zealous fire when they were talking about their Serious Language For Serious Business (yes, a Cal Henderson -quote)... but these days you can see a sort of a enlightened glow in there. And it is good.

link|flag
show 2 more comments
vote up 5 vote down

Most Computer Science grads I know switch quite often between languages, for alot of different reasons...for example:

  • I know people who refuse to program in C# because .NET = Microsoft (excluding Mono I guess), but have had to use .NET for a particular contract (and eventually enjoyed using C#). These were the same peeps who coded in C/C++ but have since changed to Java now that its open sourced.

  • Functionality - in the course of 3 years we switched from Scheme to Java with detours around C, Perl and Python and Smalltalk (egh). Scheme is a great functional language and its strong on lists and is great to teach the young ones about recursion.

  • Your Employer requires it - I've had the (dis) pleasure of working in an environment that used the motto "As long as it's Microsoft" - all the code was in VB/ASP and that killed me. At home I play with PHP and I've now discovered the awesomeness of GWT which is based on Java. I suck at Java but can make my way around it...sort of....sometimes I wish I payed more attention in Varsity.

At the end of the day I guess, all's well if you understand the foundations of programming concepts. My main problem is that I am a very slow learner :)

link|flag
show 1 more comment
vote up 4 vote down

I've used C++ throughout most of my career, initially on Unix platforms (SunOS/Solaris, HP-UX), and now on Win32. That's more due to circumstances than an explicit choice, though. As the need arose for a lighter-weight language for building tools and simulated servers, I started regularly using Python. I also use Python for my home projects, because I like the language. I've also dabbled in C# as required, to fix bugs in other people's code on my current project.

Each language has its strengths and weaknesses, but just as important is the broader context in which it is used. This includes whether a company is comfortable with a language (my current employer perceived Java to be too immature for robust development, hence we used C++), and the skills and preferences of the programmers you can get.

While languages come and go, the fundamental principles remain pretty much the same. Even the switch between imperative and functional isn't that big a deal if a programmer has a solid foundation in compsci principles.

link|flag
vote up 4 vote down

I remember when C# first came out, I was very passionate about it. Then one of my friends showed me some cool functional techniques using Lisp and then I realized that no language is perfect. It will take a long time for a language to evolve. There is no use being fanatic about one particular language. By the time it reaches maturity, we will hear another new language coming out. :) Some languages are for addressing performance, some for productivity, some for scientific or academic fields etc. We should never ever be influenced by marketing.

One advantage doing consultancy is that you will be forced to learn so many languages. It has helped me in many ways like understanding the strengths of each language, what domain they are best suited for etc.

Having said that, you need to really specialize in at least one particular language without being fanatic about it. They key is in understanding the fundamentals and having an open mind to learn or adapt to other languages and environments.

link|flag
vote up 4 vote down

I can't really post a timeline of languages I've switched through because I tend to use multiple languages at the same time. I think it's important to have more than one language in your toolset - this means you can choose the right tool for the job. I hate having to work with developers who've learned to use one language and apply it to every single job they undertake. It's like working with someone who in the murky past was taught to use a hammer, and now uses it for everything.

  • Got a nail that needs bashing in? That'll need a hammering!
  • Got a screw that needs screwing in? That'll need a hammering!
  • Got a kitten that needs looking after while you're on holiday? That'll need a hammering!
link|flag
show 1 more comment
vote up 3 vote down
  • Started in Basic - Wanted to modify the 'Gorillas' game that came with MS-DOS.
  • Went to VB - So I could make AOL Bots.
  • Went to Java - Because it was the new buzzword and I wanted to make annoying applets.
  • Went to C - Because it was taught in High School and college (and got sick of the slow JVM at the time).
  • Went back to Java - For my first job and I wanted to eat some JavaBeans.
  • Went to C# - For my second job.
link|flag
vote up 3 vote down

Lots of good reasons above to change languages because languages are different. I'm going to mention times I changed from one language to a very similar language.

Started out writing shell scripts in sh with plenty of sed and awk. Switched to ksh88 when I worked for phone companies; not much change. Then, when ksh93 was available, switched in earnest. Reason: sh compatible still works for 90% of scripts, but when extra power is needed, ksh93 is there. I never need or use awk any more.

Second example: Learned Icon in school around 1990. Still think Icon has the best string-processing model ever invented. Very good data structures for sequences, sets, tables. But Icon has poor libraries, poor integration with OS, and can't be extended. Still worth it for string processing and powerful search capability. But by 2000, Lua is powerful enough to have first-class functions, good integration with OS, great extensibility, and very good string processing. Essentially the same data structures as Icon, but a simpler design. Not as good at strings as Icon, but way better than awk, perl, and the rest of the regexp crowd. By 2005 I discover I have not written a new Icon program in 6 years. Now in 2008 I am replacing legacy Icon code with new Lua code.

Third example: Modula-3. Used M3 for a major project around 1990-1992, shortly after it was invented. Still the best design I have ever seen for writing large systems programs. Superb ability to have both safe and unsafe code in the same program. But Digital has no idea how to promote a language, in 1995 Sun rolls out Java, by 2000 it is clear that Modula-3 is dead. At the same time, systems code has become a tiny fraction of what I do. So now when I have to do it, it is back to the C I learned in 1984.

link|flag
vote up 2 vote down

C -> C++ -> Java -> C# I usually switched languages when switching between projects. Used to be a big C++ fan, now I'm just using whatever language is right for a specific project.

link|flag
show 1 more comment
vote up 2 vote down

I have done professional development work in (rough chronological order):

  1. SBASIC
  2. FORTRAN IV
  3. CORAL 66
  4. x86 Assembler
  5. Ada
  6. 680x0 assembler
  7. C
  8. C++
  9. Pascal
  10. C#

and several scripting languages. You use the language that's either (a) mandated, or (b) the right language for the job. This may be governed by needing to use a particular library (I had to use FORTRAN for the GKS library, for instance). It's not always a matter of your own choice. Get used to swapping between languages if you expect your career to have any longevity. The principles of procedural languages don't change.

link|flag
vote up 2 vote down

I've always switched languages for two main reasons:

  • I need them for work
  • I though they might be useful on my cv (that's the main reason I learned C#

The important think to keep in mind is that I don't really think the language is important at all. You learn one to get experience with it so that if you need it at work you'll be able to learn it more quickly but languages are just tools, almost everything is done the same way in every language.

Nontheless I've look up some programmin languages for fun like Spec# which I like A LOT but is still in CTP stage and thus won't be used for real things in a while.

If you really wanna learn a useful new language then go for a paradigm change more than a language change. Learn Lisp or F# or Haskell or whatever functional language you choose (erlang might be useful someday for example). Learn Prolog as well. That will give you a more general overview of programming techniques and you'll learn about new ways of thinking about problems.

link|flag
vote up 2 vote down

For me, it was GWBASIC -> QBasic -> Visual Basic -> C#.

I didn't spend any time on VB.NET. I saw C# as my way out of the BASIC world.

I would like to learn Ruby and master JavaScript, but I never make the time.

link|flag
vote up 2 vote down

Only an idiot programmer would say they use a single programming language all the time.

Any programmer worth anything will know at least a half-dozen languages. It's not like most of them are all that different, anyway.

Nowadays I primarily use REALbasic, but I've worked with more languages than I'm sure I'll recount here:

  • C, C++
  • Java, PowerBuilder, C#, VB.NET
  • BASIC, Visual Basic, Pascal
  • PHP, ASP
  • Assembly (8086)

I'm really keen at taking a look at Ruby and/or Python but just haven't had the time.

Why do I switch? Sometimes it's what the company requires, sometimes it's what I think will work best, sometimes it's what I think is the most fun.

link|flag
vote up 2 vote down

"Did you ever switch from one programming language to another? If yes, why?"

Yes. To stay employed.

See Programming Languages I've Learned, Programming Languages I've Learned in Order, Programming Languages I've Learned (In Rough Order) Meme.

link|flag
vote up 1 vote down

I started, like many, writing webapps in PHP. As I learned more and more about programming, and realized what an unmaintainable mess PHP was (as well as how cluttered the language was itself), I tried python, and loved it. I've stuck mainly with it ever since.

link|flag
vote up 1 vote down

I use predominantly C# in my day-to-day job, but even within that I've switched from C# 1.0 to 2.0, and 2.0 to 3.0, because new versions of the language offered more features (generics, iterators, linq) which means you can write code faster and more accurately. Admittedly the new versions are backwards-compatible with the old versions (except in some edge cases) but it's still a switch as it requires learning new ways of doing things.

Outside that, I think there's great merit in learning other languages, even if it isn't to the same level as your day-to-day ones, because it helps to avoid the Blub paradox. It also means you know the capabilities of other languages which can help you decide whether you should switch, and under what circumstances (for example F# is much better than C# for self-contained scientific/engineering applications due to things like units and infix function declaration, but is less good for writing libraries that seamlessly interoperate with other .NET languages).

link|flag
vote up 1 vote down

I started in Basic

need speed

Then Assembly

need sanity

Then C

need GUI

Then Visual Basic

need GUI and speed

Then C++

need web applications

Then Perl

need more web apps in less time

Then PHP and JavaScript

Stuck with PHP (for web) and C++ (for desktop) currently. Did try Java a little bit, but found it too bloated for my hardware .

link|flag
vote up 1 vote down

I learned languages in the order listed below. I am actively using Java, C#, VB .NET, PowerBasic, PowerShell, Python, PHP, and VB 6. My favorites at this time are PowerShell, PowerBasic, and C#.

I try to use the language that best fits my task. This is usually a combination of language features, performance, run time requirements, and my comfort level. This is a dynamic combination that changes over time. I also devote some time each year to learn different languages. My goal is always to be more efficient and to maximize what I can do in as few languages as possible.

 1. Fortran                    11. Forth              21. Python
 2. Honeywell Assembler        12. 8086 Assembler     22. PowerBasic
 3. Cobol                      13. C++                23. REALbasic
 4. PL/I                       14. VB 2.0             24. Ruby
 5. IBM 370 Assembler          15. Perl               25. PowerShell
 6. C                          16. Java
 7. Atari Basic                17. PHP
 8. 6502 Assembler             18. LotusScript
 9. Pascal                     19. C#
 10. Action                    20. VB .Net

link|flag
show 3 more comments
vote up 1 vote down

if you are a skilled programmer never even give importance to one language and don't stick within the language barriers. Software is in its baby steps now, so adaptability is the best skill for a programmer in these days,

Personally I came from Pascal - C - C++ - Java - C# and VB.NET And now I am a Language agnostic

link|flag
vote up 1 vote down

20+ years....

Fortran 77 Algol Cobol x86 Assembler Natural Basic Pascal Prolog C Delphi Java SQL C++ Javascript VB/VBA VB.Net Perl Cold Fusion PHP Python

And that's committing all sorts of stuff like Awk, Easytrieve, Snobol, Smalltalk etc etc which I've dabbled in or have used for small tasks and I'm sure to have forgotten a few too. I'm probably somewhat more 'new language' curious than many but I don't think I'm especially untypical.

link|flag
vote up 1 vote down

Often, the development platform can make the decisions for you. i.e. I had to learn and program in lua to make a World of Warcraft add-in. Early in my career, AutoLisp was the only option for AutoCAD programming, before they opened it up to C and latter C++ (and now .net).

Sometimes you have a choice in language, sometimes the platform narrows down that choice.

link|flag
vote up 1 vote down

It can sound funny, but I started as C# developer, and then had to switch "temporary" to Java because of project which I was assigned to, but then I started using IntelliJ IDEA and switched to Java permanently because of it. I still think C# is better language and still prefer it for GUI desktop applications.

link|flag
vote up 1 vote down

BASIC

Assembly

Pascal

C

Shell scripts

Python

Scheme (I gave this one up pretty quickly...)

Java

Then I realized that it might be best to learn more languages and use the right one for the job.

Now I use Objective-C, Java, PHP, Python, C, C++ and C#. From this list I can always find one that suits a certain problem/platform best.

I stayed away from perl because it makes my head hurt.

I've never used Ruby, but if a project will require it, I will add taht to the list, too.

link|flag
vote up 1 vote down

Basic -> C -> C++ -> Visual C++ -> Java -> ARM C++ -> C# -> PHP (as a cronjob) -> Python -> Perl

as work requires it.

link|flag
vote up 1 vote down

IBM/MS Basic -> Pascal and Assembly -> Java, C/C++ -> Java, C/C++, smattering of Lisp, Prolog, shell scripting -> Perl, VBScript -> PHP, Javascript, a bit of Python -> Ruby.

In language learning, I just kept looking for and finding increasing contentment, satisfaction and even joy. IMO, the "many tools in the toolkit" analogy only goes so far. Today's modern languages are extremely powerful and flexible, and most popular languages have the wherewithall to let you do 99% of the applications you want to, and do it reasonably well. That's the reason why you often hear "I would try Language Y, but I can already do it in Language X".

I think, in choosing a language for a task (or for "all" your tasks), you should aim to minimize frustration and annoyance. You want a language that gives you the shortest path from idea to working implementation. Since different people can have different mindsets and preferred approaches to problem solving, and languages (or rather, their authors) have different philosophies on how programming should be done, what fits you most comfortably will be different from what fits others. But I think everyone should strive to reach the goal of minimum effort for maximum results.

Excessively verbose syntax; syntax that "needs" an IDE to write; standard libraries and APIs that are difficult to remember; immature standard libraries; compiler quirks; exposure of underlying hardware or low-level architecture (and the need to work with or around them) -- we should seek to remove all these things. Ultimately, the only thing a programmer needs to do is specify things that a computer should not decide. Everything else is an obstacle to the utopian programming experience. If a language empowers us this way, then, in my opinion, we can begin to talk of that language as "the best language".

For me, Ruby comes closest to being this language.

link|flag
vote up 1 vote down

I came from programming VB6 to VB.Net but now I'm in C#, I switched to this language cause at the beginning of this year (2008) i had to make a very simple application in a mobile device and i had to write the code in VC++, I never programmed in VC and was difficult but also was magical, the experience was awesome. I had to study very much and I really fell in love of the C language.

That hooked me to C# although is the same framework of VB.Net but you also find more resources in the web and another reason I switched (C, C++, C#) is that (IMHO) I feel that you become a better programmer, personally I found myself with an enlightment feeling about this language, the last time I felt that way was when I started to study Scheme.

link|flag
vote up 1 vote down

I tend to dabble in every language I can get my hands on, but if I count just the languages with which I've actually produced something useful (in no particular order):

  • 8080/Z80 assembly language
  • MBASIC
  • C
  • Pascal
  • FORTRAN
  • C++
  • C#
  • Python
  • Perl
  • Visual Basic
  • JavaScript
  • PHP
  • x86 assembly language
  • dBASE
  • SQL
  • Informix-4GL

and a few DSLs I've built, some which were pretty useful and others I'd really like to forget :-)

link|flag
1 2 3 4 next

Your Answer

Get an OpenID
or

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