vote up 41 vote down star
16

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

114 Answers

vote up 0 vote down

I think I've used something on the order of two dozen languages over the course of my career. (FORTRAN, several proprietary implementations of BASIC, assembly, Pascal, INFO, R/BASIC, C, C++, Visual Basic, VBA, Perl, PHP, Python, C#, SQL, XSLT, Javascript, a couple of DSLs including one I wrote myself, man, it's endless.) I've gotten fanatical about a couple, at various points (AREV in 1989, XSLT in 2001, Python today).

Many times I've had the language chosen for me by circumstance, either because I'm working on an existing codebase or the hardware only supports one useful language. It was only fairly late in my career that I got to the point where I started making those decisions myself. I like that position better.

link|flag
vote up 0 vote down

I constantly switch around depending on what I am trying to accomplish.

java - first language, but never use it anymore PHP - anything web related Perl - anything parsing related Python - usually use this if i need to make some kind of command line app really quickly C/C++ - anything speed related C# - anything windows gui related

link|flag
vote up 0 vote down

Yay, story time...I was writing in assembler, and I took a class in FORTH. I saw how FORTH collected and organized the very habits we ASM coders had developed over time. Plus some more good ideas. I knew I couldn't switch over in the middle of a project, but vowed to use it for the next one. Meanwhile, the code in my current project started to rearrange itself to look more like FORTH. After the switch, I used FORTH for about 16 years.

More recently, I was constructing an embedded web server and writing the glue code in C. But I found I was having to generate html pages on the fly. Now, Rasmus Lerdorf had come to town and explained how PHP grew out of the same repetitious code writing. I knew the right thing to do was to find a way to embed PHP in this server. And once I did, boy was I glad! PHP let me do so much more.

Moral of the stories: Sometimes, the language calls out to you.

P.S. I see William Keller's comment about PHP becoming "an unmaintainable mess". I tend to agree. So I've made a mental note to pay more attention to Python.

link|flag
vote up 0 vote down

I used to be a C++ programmer who frowned upon anything that was Java-related. Then in 2003, towards the end of my time at The University of California, Santa Cruz I got involved with the SCATE Project, which involved pure Java development. After making a number of semantic and philosophical shifts in my thinking, I can to appreciate Java's understated elegance. And while, to this day, I continue to encounter my fair share of memory management issues, garbage collection has made this significantly less painful.

link|flag
vote up 0 vote down

Basic -> Turbo Pascal -> Turbo C - > Turbo C++ -> dBase III -> Clipper -> Visual FoxPro -> Visual Basic 6 -> Visual Basic.NET -> C#

And throw in some more along the way like Perl, Python, Prolog, Fortran I learned but didn't really use :-)

link|flag
vote up 0 vote down

I don't know about the "stereotypical programmer" but I've used dozens of languages in my career. Let's see if I can still list them....

I've used assemblers, machine code (not the same thing...), FORTH, APL, Pascal, assorted BASICs, Modula-2, COBOL, FORTRANs IV, 66, 77, 90 and 95, C, C++, Objective-C, Lisp, Prolog, sh, bash, csh, zsh, rexx, Perl, PHP, Java, Javascript, C#, SAS, SQL and assorted "4GL" database access languages.

And I'm sure I've forgotten some.

But of all those languages, I firmly believe that the best language of all time is what ever language is best for the job at hand. You don't write websites in APL and you don't write operating systems in Javascript - anymore than you'd use a band saw to build a car.

link|flag
vote up 0 vote down

I started on old-school MUDs in c and then c++. Professionally I used Perl for quite a while then found a position that was mostly c++ with bits of Perl. My first book used PHP/SQL as a proof of concept language, however I've used PHP as a tinkering language more than a production language. Recently I was introduced to Erlang which has been the subject of my second book as well as several conferences and presentations. Professionally I do native iPhone development now.

C ~> C++ ~> Perl ~> C++ ~> PHP (first book) ~> Objective-C ~> Erlang (second book)

link|flag
vote up 0 vote down

Pascal->C->Java->C#->Java->Python->C and so on... First for education, now because I use whatever is fit to get the job done.

link|flag
vote up 0 vote down

I was a hardcore vb programmer, promoted to vb.net. In a program requiring lot of type casting, my vb code got too ugly even in the first class I wrote. Then i switched to c# for some cleaner type casts

link|flag
vote up 0 vote down

4 years out of school now, and I switch all the time.

In school it was mainly java, c++, and 68K assembly, switching back and forth all the time.

Then my first project at work was in C++. I completed a hobby project in PHP during this time. When my first work project shipped, our second project had a C# GUI talking to a C++ back-end. Third project I was in C (the GUI library GTK is in C) and C++. Fourth project I jumped in and helped out doing perl that drove a web page admin portal. During that time I also did other components in C and C++.

I had the option to do a project in 8560 assembly, but I passed on it since it's just supporting a legacy product about 10 years old. New development for me only, please.

Anyway, who are these developers that just use one language?

link|flag
vote up 0 vote down

Started in 8086 assembler and Pascal in college, moved to c++(DEC VMS), then my life got interesting using DEC MUMPS (PDP11/44), Visual Basic progressed to InterSystems MUMPS(later renamed 'M' or InterSystems Cache), then once .NET hit the market started using VB.NET and C#

link|flag
vote up 0 vote down

Childhood through college:
Basic (c64) -> 6502 Assembly (c64) -> Basic (IBM/PC) -> Visual Basic -> x86 Assembly -> RPG -> Cobol -> C -> C++

Professional life: I started out with Java doing JSP. I then moved to ASP/VB Script which was an extremely painful move for me at the time. Then I moved to C# which I enjoy just as much, if not more, than Java development.

On the professional side, language switches tend to happen with job switches since many companies don't want development happening with more than a couple/few languages and tools at a time. I can't just go ahead and implement something in C because it would be the best tool for the job because it is not an approved language at my place of employment. In my current position, I switch between C#, batch script, Sql/DTS depending on the task at hand.

link|flag
vote up 0 vote down

Assembly. I'm always writing in assembly. I just use my compilers as macros, and interpreters for scripting. :)

Seriously, I have progressed from Apple BASIC (Applesoft and Integer) to Apple 6502 assembly, to GW/MS-BASIC to C and 8086 assembly. A little further down the road, I picked up Unix and DOS shell scripting, and more assembly for various MCU's. C++ then became popular. I then had some VB, Java (mostly with .JSP) and Perl come my way, and I'm just now starting to touch the fringes of C#. Oh yeah, throw in some SQL, sed, TFLanguage (a proprietary language), some report generators that I don't care to remember anymore, and of course, the obligatory school classes on Pascal (high school) and Lisp (college).

Almost all of the language choices were dictated by market forces -- either the market of books available at the time, or the market of the guy cutting me the paycheck.

To me, the first class of the "stereotypical programmer" -- who sticks to his one-true-platform -- is a guy who then goes home after work and always eats the same steak and potatoes, and drinks his Pabst Blue Ribbon. Indian food? Isn't that grilled buffaloes or somethin'? If he's happy where he is, great for him. (Side note - he's probably also proud of always filing his TPS Reports...)

But I like a bit more variety in my programming diet, thank you. But I'm still main stream. I don't think I have the stomach to more than nibble on a little bit of Lisp. And the other exotic stuff? Not now, thank you.

link|flag
vote up 0 vote down

Today: C#, VB6, VB.net. Why all three? Legacy code is in VB6. All new code is in C#. Interop user controls must be in VB.net. I have written for at least an hour in each one of these languages today.

While all this is going on, I am using ruby for hobby programming because I like rails.

I think a programmer should be able to switch from language to language without much difficulty; although, I am aware that to use a language well it takes a lot of experience with that language.

link|flag
vote up 0 vote down

Started off with Basic as a kid, stayed there for a few years (didn't know any better).

Got to college and ended up in Pascal.

Then C on Unix.

First job was doing C on Unix. Ended up doing that long time about eight years.

Then the big boss at the company I was working at wanted an new application with a Windows GUI. He wanted to do PowerBuilder, looked at it, didn't like it, convinced him to go with C#.Net.

I wish I could say I had some brillant motivation for each switch but it was really just based on the job.

link|flag
vote up 0 vote down

I started teaching myself C in high school. (Never learned much do to other activities and lack of motivation.)

Went to college and was doing C++ until I changed my major and quit programming. (Bad choice, I don't even like political science... kind of graduated on accident.)

Went BACK to college after getting a Political Science degree to go ahead and get my CS degree. All C++ and Java. (Not a fan of Java by the way.)

Decided to do some web development stuff on the side while working and going to school and got pretty comfortable with and somewhat addicted to PHP.

Eventually I got sick of trying to run my own business, though I still help with it some and still do some PHP, but I'm also working at a small shop doing C# and VB.NET now.

After being forced to use VB at work, I realized how much I hated it, and decided to try to get into graphics/game programming in my spare time.

So now, I'm getting familiar with C++ again, but I'm probably most comfortable with C# or PHP.

link|flag
vote up 0 vote down

started on BASIC

did/doing c/java at school

learned php for doing web development

realized php sucks

ruby

link|flag
vote up 0 vote down

I have switched multiple times and for a few different reasons:

1) Commodore 64 Basic to Watcom Basic -> This was going from grade school where we had Commodore 64s and I had one at home that I programmed a few things on and enjoyed, but the high school computing environment didn't use Commodore 64s so I had to switch dialects if not something more in going from a 64K very specific machine to an environment where we had a file server and people could switch machines and still use their code.

2) Watcom Basic to Pascal -> This was going from High School to first-year university. In Basic you have numbers and strings usually and the $ at the end distinguishes them while in Pascal you can now specify types which gives one some serious power, IMO.

3) Pascal to Modula-3 -> Going from first year Computer Science of Pascal on Macs to Modula-3 on UNIX machines. Big shift in going from single button mouse to 3 button mouse, to having a shell that can be customized and monitors that are shaped very differently for the most part as aside from a room of IBM AIX the others were simple terminals with only a couple of rooms with colour monitors and the rest are black and white.

4) Modula-3 to C++ -> Concurrent programming using a micro-C++ add-on to introduce flow control functions and allow us to learn these things.

5) Visual C++ to VBScript -> Going from ISAPI extensions and a proprietary markup language to VBScript and HTML was quite the shift but I did get though it. This was also my introduction to ASP.

6) VBScript to C#.Net -> Going from ASP to ASP.Net had a few interesting moments at timse as where in one you didn't have to define things, in C# you have to and this along with a few other differences were some of the big things I noticed.

7) Adding Javascript -> Client side validation was something of an add-on from my view and not really a change.

8) VB.Net, VB6, and JScript -> These are all add-ons when dealing with legacy systems built in something that I don't have control over.

I left out learning SQL, XML and a few other classes of languages. Generally I find aside from a few syntax changes most programming that I've done boils down to just a few things: Conditionals, repeating, and then the whole pile of things called variables.

link|flag
vote up 0 vote down

I switch between languages daily if not hourly.

I guess in the programming world you're always working with several different languages at the same time (SQL, C#, JavaScript, HTML, XML, CSS, etc.), but I'm guessing that you're asking something more like switching from VB.NET to C# - which I do often, or .NET to PHP which I also have to do on a daily basis to handle all the different projects that I deal with.

So I guess basically being a programmer means knowing and using many different languages.

link|flag
vote up 0 vote down

BASIC C x86 Assembler C++ VB (6 and earlier) PHP RDML/RDMLX C# VB.Net

Oh, and I read RPG (don't know the finer points of writing it, but I can figure out what it does).

link|flag
vote up 0 vote down

C++ to C# Unfortunately I am back on C++ now

link|flag
vote up 0 vote down

Anyone who has been in this industry for more than a few years has switched languages. In 30+ years of professional programming, I have used:

Fortran Pascal C Algol APL PDP-11 Assembler Cobol OS-360 Assembler Perl Javascript VB / VB.Net

There are various dialects of those languages - such as Cobol on Univac 1100, IBM MVS, IBM System/38.

A good programmer can pick up just about any language.

A Fortran programmer can write Fortran programs in any language.

link|flag
vote up 0 vote down

More-or-less linear:

  • 8-bit Durango BASIC because that was my first job
  • Nixdorf BASIC - hired to maintain accounting software
  • VAX Fortran - because I became a VMS sysadmin
  • Modula-2 - because it was a nice compiler for my Fat Mac 512K
  • Think Pascal - because it had a better debugger and let me build real Mac programs
  • Think C - cut-down C++ because 3rd party libraries were increasingly using C apis
  • C++ - to use Metrowerks PowerPlant framework, and MFC and others
  • Objective-C because I had to leave PowerPlant behind and move to Cocoa for OS/X GUI

Pretty much in parallel over the last few years:

  • REALbasic - to get some simple GUIs written, stayed because I found it productive for cross-platform GUI programming and they had implemented enough of my favourite OO features to make it a neat language
  • Python because I heard people rave about it, tried it and felt comfortable, great for prototyping
  • Ruby because Andy Hunt's praise intrigued me and I'm an OO guy to the heart who dabbled in Smalltalk and Python white-space sensitivity was in my way writing code generators
  • C# because I wanted to program better GUIs than MFC and I like the new features in the language
  • Forth to play with programming on my Palm on a tropical holiday
  • Lisp (Scheme) because of Paul Graham
  • ActionScript/JavaScript because I needed to receive brainwaves in Flash
  • XSLT because I'm a masochist (and I've had to deploy some serious local XML transformations)
link|flag
vote up 0 vote down
  • 1989: Started with Pascal (Turbo, CPM)
  • Moved to Pascal (Turbo, MSDOS) - when I bought a PC!
  • Integrated 8086 assember (inside Turbo Pascal) - because I could. Fancy graphic demo scene FTW!
  • Moved to Delphi - needed to get PAID for the work.
  • 2000 Moved to Java - because it was the cool thing, and delphi didn't do web.
  • Moved back to Delphi a bit - money, again.
  • Moved to C#, because I wanted to do .NET.
  • Learned Ruby, because rails looked cool. Never used it.
  • 2008 Learned Python because google app engine looked cool. Using it a little.
  • 2009 Learning Objective-C again - because I have an iphone :) Not using it much.
  • Still using C#. Pays the bills. Wish I could use it on the iphone and GAE....

Learning new stuff keeps me interested, and also frustrates me no end. Go figure.

link|flag
vote up 0 vote down
  • Started in Basic - cause it shipped with DOS (I didn't have money for anything else)
  • Moved to Pascal - cause my friend used it (he used it because in high school thats what they used, and I had yet to get to high school)
  • Moved to Delphi - cause turbo vision was a ball ache and making windows apps seemed cool.
  • Moved to ASP, PHP and Perl - cause my job required me to do it
  • Moved to Kylix - cause i didn't realise Borland would shoot themselves in the foot so bad and cause making Linux apps seemed cool (pheh I'm better than those Windows developers now)
  • Moved to C# - cause I needed a job and that's where the jobs were.

So to summerise: No budget -> peer-pressure -> wow factor -> finally to get the job done (i.e. basically the same process corporates go through when picking anything)

link|flag
vote up 0 vote down

I switch from language to language on daily basis, at work i use C#, for personal projects PHP for Web and Delphi for windows applications.

link|flag
vote up 0 vote down

I went Basic, Pascal, Visual Basic, C#

with a little bit of C++ and Java at uni

link|flag
vote up 0 vote down

Sure did

Fortran IV to Fortran 77 in the mid-eighties

Fortran 77 to Fortran 90 in the late nineties

Fortran 90 to Fortran 95 in the very late nineties

and Fortran 95 to Fortran 2003 about 15 minutes ago

Oh, and in case anyone reading this thinks I'm being frivolous, I've also programmed in Pascal, APL, C and C++, Haskell, Python, Mathematica, Matlab and probably other stuff I've blotted from my memory.

link|flag
vote up 0 vote down

Heh...this is beginning to look like a programmer resume site.

List<ProgLang> relevantLangs = myMemory.RetrieveLanguages(
    ProgLang.InteractionFlag.OnceTypedSome |
    ProgLang.InteractionFlag.ForcedToUseInSchool |
    ProgLang.InteractionFlag.UseDailyAtWork |
    ProgLang.InteractionFlag.PlayWithForFun);

foreach (ProgLang lang in relevantLangs)
    lang.DumpToPost();

Did you ever switch from one programming language to another?

Absolutely. Do so daily.

If yes, why?

Many reasons (With higher likelihood first):

  • Client N's code is in language X[N], and:
    • a rewrite is impossible/improbable
    • the language is suitable for the task
  • I control a project's code but I must use language X1 because
    • Platform compatibility
    • Existing API interaction
  • I control a project's code and I want to program in language X2 because:
    • Its strengths fit the problem
    • I want to learn the quirks of this new (to me) language
    • I want to keep up on new language features
    • I want to use its strong library support for task T

In summary, as a consultant, I language switch mostly based on external, hard requirements. That said, however, I often switch to try new things, continue learning, and stave off monotonous, required language inundation.

link|flag
vote up 0 vote down

For me:

  • Pascal
  • Lisp
  • C
  • Objective-C
  • Java
link|flag

Your Answer

Get an OpenID
or

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