up vote 63 down vote favorite
28
share [g+] share [fb]

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]

link|improve this question
24  
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
4  
That is, not to put too fine a point on it, the single most retarded way I've ever seen to define "your favourite language". – JUST MY correct OPINION Jun 8 '10 at 0:40
1  
Yesterday I wrote code that moves objects between Java and Python and back, via C++. Does that count as switching languages? :) – configurator Sep 26 '10 at 4:57
show 5 more comments
feedback

closed as not constructive by Jeremy Banks, Bill the Lizard Sep 20 '11 at 1:41

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ.

134 Answers

1 2 3 4 5

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|improve this answer
41  
Nowadays I use the best tool for the job, I am "language-agnostic" – Sklivvz Sep 21 '08 at 20:47
14  
Basic -> assembly must have been an interesting paradigm shift. :-) – Ben Blank Jul 16 '09 at 0:19
8  
The basic -> assembly path seems very common from people that started programming in the 80's. On these computers, there were mostly the only programming languages you have. – Michaël Larouche Aug 12 '09 at 13:02
show 8 more comments
feedback

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|improve this answer
9  
which of the two kinds is Prolog? – HenryR Sep 27 '08 at 13:24
2  
Prolog is neither: en.wikipedia.org/wiki/Declarative_programming – crashmstr Oct 8 '08 at 19:33
6  
+1 For mentioning functional languages and the HTML point – Draemon Oct 23 '08 at 23:35
5  
Prolog, and SQL, are "declarative" programming languages because you declare what you want, you don't describe the procedure for getting what you want. – Jose M Vidal Jan 31 '09 at 2:15
5  
@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 '09 at 13:45
show 4 more comments
feedback

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|improve this answer
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 '09 at 11:04
show 2 more comments
feedback

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|improve this answer
feedback

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|improve this answer
show 2 more comments
feedback

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 people 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|improve this answer
1  
"Awesomeness" of GWT? :) – Dmitri Nesteruk Mar 26 '09 at 11:15
feedback
  • 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|improve this answer
3  
+1 for the Gorilla game! – Dimitris Andreou Jun 8 '10 at 1:43
show 1 more comment
feedback

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|improve this answer
2  
Very funny :-) However, this is a proof by analogy. Hammers just aren't the same as programming languages and nails are vastly different from computer programs. – Dimitri C. Nov 23 '09 at 15:29
2  
On the other hand, if the only other tool you have is a screwdriver, something's going to get screwed. It's more than languages; it really helps to have a diverse history in CPU architectures, operating systems, IDE's, databases, everything. – Cylon Cat Feb 26 '10 at 21:20
show 1 more comment
feedback

One reason to stay with one language as much as possible is to avoid the situation in which every project in your company is implemented in a different programming language, which in turn comes with a different IDE, standard library, custom written libraries, library quirks, programming language idioms, quirks and limitations, profilers, etc...

link|improve this answer
feedback

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|improve this answer
feedback

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|improve this answer
show 1 more comment
feedback

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|improve this answer
feedback

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|improve this answer
show 4 more comments
feedback

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|improve this answer
feedback

[fanboy vs. language slut] Did you ever switch from one programming language to another? If yes, why?

I'm a language slut. I like learning new languages, and somewhat perverted I like (sometimes) deliberately using the wrong tool for the job, just to see how far any given language can stretch. Of course, only for my hobby projects :)

I often "switch" languages, in that I'll typically use the language I know that'll let me do what I need fastest. For some time, all I knew was C, so I wrote everything in C. Then python, and bash scripting. If portability is ever an issue, I'll probably rewrite my ~/bin in python, but for now /bin/sh is fine.

To answer your question succinctly: I've never switched per se, I've just added new tools to the toolbox and stuck to "the best one", which has tended to remain constant throughout some time, but with sudden shifts once I learn a new language.

And I advocate learning new languages for a broadened understanding of what programming is. If I could force any languages upon people, I think I'd pick the following:

  • C: for the pointers, and the low-level understanding you get
  • Haskell: for understanding (pure!) functional programming
  • Lisp (or scheme): for understanding macros and (so I've heard) (mini-)language design.
  • Smalltalk: I don't know it, but I think it might teach you a thing or two about what OO was really meant to be about.

And I don't recommend a "switch" to any of them (I only know C well enough to be able to recommend a switch to that, and I know there are many jobs that C aren't the ideal tool for). But learn them for the better understanding they'll give you.

link|improve this answer
feedback

If it can't be done in LOGO, then it isn't worth doing!

If that makes me a

REPEAT 4 [FD 100 LEFT 90]

I don't care!

Turtle Power!

link|improve this answer
feedback

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|improve this answer
feedback

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|improve this answer
show 1 more comment
feedback

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|improve this answer
feedback

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|improve this answer
feedback

"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|improve this answer
feedback

Used: CBasic -> FORTRAN -> Z80 Assembly -> Lotus 123 (see below if you don’t think spreadsheets are a programming language) -> C -> 8080 / 8086 / x86 / 68000 Assembly -> Hyperscript -> Eiffel -> Objective C -> C++ -> Java -> C#.

Tinkered With: TRS-80 Basic -> 6502 Assembly -> Lisp, PL/1, MBasic, Dbase, Postscript, Visual Basic, SQL, Delphi, JavaScript, F#.

Someday I’ll have a look at what all the fuss is with dynamic languages, but I am too busy lately. Will C# 4’s new dynamic features count?

If you have nothing better to do, below is a little insight into how / why I ended up using some of these and how / why I moved on to something else.

TRS-80 Basic – I was a young Honda motorcycle mechanic in 1978 when the owner of the motorcycle shop purchased a TRS-80 in an attempt to automate the parts department (all those parts and no computer – how did we do it?). I tinkered with it some, but the unreliable cassette tape storage was too frustrating and racing motocross was a lot more rewarding for a 19 year old with a competitive streak. Too bad for me.

6502 Assembly - I was a bored motorcycle service manager in the dead of winter in Lawrence, Kansas (Rock Chalk, Jayhawk!) in 1982 (too cold for motorcycles and not enough snow for snowmobiles). So I bought an Atari 800 to play video games and found that programming was more fun. My Atari 800 did not have enough RAM for Basic - sometimes it's better to be lucky than good (I’ve often thought that learning assembly before anything else taught me something useful). I actually got a Reversi game and disk copy program working and somehow convinced Byte magazine to publish a reference to them. I think I sold three copies…not very rewarding considering the fact that I was sure I had the fastest disk copy program ever created.

CBasic – I decided it might be nice to get paid more than 9 months out of the year (motorcycle service in Kansas does not pay too well in January) so I sold the Atari and bought a Xerox 820 CP/M computer which had a pair of huge 241K 8 inch floppy disk drives and an unbelievable 64K of RAM! It was the most expensive thing I had ever purchased at the time. I was fortunate to find consulting work for a local VAR customizing CBasic accounting software for local businesses. CBasic was far superior to MBasic (Microsoft Basic) for many reasons (did I mention it was much faster). Looking back, CBasic was the first language I used which was reasonably good for developing business software.

Z80 Assembly - the VAR got involved in marketing a portable computer called the Zorba (like the old Osborne portable). It had reliability issues and I got involved in fixing some of the issues which was a great learning experience. Wow, I could write some amazingly fast stuff in Z80 assembly. Did I mention that I used to race Motocross and I like “fast”?

Lotus 123 - I know, most programmers don't think of spreadsheets as a programming language, but you could make a case that "spreadsheets are the most popular functional programming languages in the world" (Google it and you'll see what I mean). Lotus 123 was the first really great piece of software I used. It was so much better than VisiCalc, SupreCalc and Microsoft's Multiplan which I had helped our customers with. Did I mention that Lotus 123 was faster - like night and day! I went to my boss and told him we should develop our own spreadsheet, because as good as 123 was, we could do it better (I think I probably meant “even faster”). He laughed and promptly dismissed the idea – but I never forgot it.

C – Through a series of fortunate events, two years later I was leading the development of the Smart Spreadsheet 2.0, and later SmartWare 3.0 (office productivity software for DOS / Unix which never made the transition to Windows). After going to COMDEX in 1986, I persuaded the powers that be to let me start building a new spreadsheet for Windows – which eventually became Wingz for Macintosh because Windows wasn’t quite ready for prime time. Wingz went from 0% to ~25% of the run rate for spreadsheets on the Mac in a short period of time thanks to the fact that it was years ahead of Excel in several areas (yes, it was faster, but it was a lot more than that). Unfortunately for me, Informix had purchased the company and decided to get out of productivity software when their core database business hit a rough patch, so all that hard work went down the tubes (biz lesson – own your own code if you possibly can).

Smart Project Processing and Hyperscript - SmartWare and Wingz actually had their own builtin languages - Smart Project Processing and Hyperscript. Both were English like (wordy). I had argued for making the language built into Wingz a derivitive of Pascal - but the powers that be were sure that nobody who used a spreadsheet would ever want a real programming language.

8080 / 8086 / x86 / 68000 Assembly – back in the day when it was the exception to have floating point hardware it was crucial to have your own floating point routines. Smart Software and Wingz also had a fair amount of assembly for frequently used string and memory routines. Sometimes I still wish I could implement a crucial C# method in assembly…but who wants .NET code that is unsafe these days?

Eiffel - I stumbled upon one of Bertrand Meyer’s early books on OO programming in Eiffel. I never did any real work in Eiffel but I believe reading this book taught me more about creating reliable and reusable software than anything else I’ve done in all my years of programming (that sounds like something an old person would say).

Objective C – I purchased a beautiful Next Cube for $15K of my own hard earned cash (my wonderful wife though I was nuts). I quit my job (guess what my wife thought about that?) and tinkered around for a while, did some performance work for a networking company and eventually started to write my own spreadsheet for NextStep in Objective C. The Next was built on the Mach kernel and was the first OS I used with real lightweight threads – the things I learned about multi-threading back then are definitely useful now! It had Display PostScript – which was actually the thing that first attracted me to it. The concept of the display and printer having the same graphics language seemed like a no brainer to me and I was sure Next was the next big thing. Most people know the descendant to NextStep as Macintosh OS X.

C++ - Unfortunately, Next didn’t make it and I needed to find a way to pay the bills, so I converted my Objective C / NextStep spreadsheet to C++ / Windows (via MPW Pascal but that’s another story) and teamed up with some guys who knew how to run a business and sell things. We released Formula One as a VBX (Visual Basic 4 Extension) and C library in 1993, followed by a C++ wrapper, an ActiveX (COM) version and even a Netscape Navigator plugin – which was the first internet spreadsheet AFAIK.

Java – Having led the development of commercial software which ran on multiple platforms, I completely bought into Java’s Write Once Run Anywhere mantra. I already thought the idea of a “real” spreadsheet running in the browser was a real solution to a real problem and Java Applets seemed to be the perfect way to implement this. Formula One for Java was the dominant spreadsheet component for Java for several years – basically until the pricing model was changed to “as much as we can get” which drastically reduced the ability to add customers. Formula One is now the engine behind Actuate’s e.Spreadsheet which is still a pretty good product as far as I can tell (albeit expensive).

C# - My official reason for leaving Actuate several months after they purchased Formula One was the fact that they would not let me build Formula One for .NET (biz lesson – don’t have business partners who will sell your code to someone else if you can possibly avoid it). They had and still have good reasons for this and I still like the people there – but I was tired of trying to build a real GUI application with Java / Swing. While Java was great at some things, it was definitely not so good for building GUI applications (remember, this was 2002, I don’t know how true that would be today). C# made some important improvements (Java still had no enumerated type after 7 years!). But the key was that, IMO, Java’s Write Once Run Everywhere mentality led to sub-standard Windows applications – and most business software developers who wanted a spreadsheet component wanted it to look and feel like proper Windows software.

Managed C++? – I sometimes think we might rewrite our core engine in Managed C++. Theoretically, we could then build safe .NET components as well as a native core engine from the same source code base. I have no doubt that a C++ core engine compiled to native code would be faster at any given point in time than the C# equivalent. But my concern is that adding features and improving algorithms would take much longer in C++ than in C#, and that eventually we would get to the point where we would have been better off sticking with C# for it’s increased programmer productivity.

F#? - As I consider the work we need to do to take better advantage of multi-core processors, it seems that it might make sense to convert portions of our code to F#. If we’re lucky, all of the features which make F# better for multi-threaded scalability will find their way into C#.

link|improve this answer
show 1 more comment
feedback

tripping blindly, thru forests of apis where my little adventure; will soon meet it's demise;

of dragon hunting and compiler wrestling; my work is hardly done; I find the first much easier; the second is hardly ever won;

for newbs like me I stumble; thru docs and syntax unknown; thumbing threw appendixes; whilst my hair has overgrown.

If you don't want to end up like me this is a cautionary tale; stick to one language for now; lest your learning efforts fail.


That little poem describes what the last five years of my life were like trying to learn to program. I'm good with math and once I spend a week or so with a language I can get the feel for it. The problem is every time I started learning a new language I always found something to complain about it, until I realized there is no silver bullet.

Roughly this is how my experience panned out:

  • BASIC: Not enough low-level control, slow in most varieties
  • Assembly: Fast but largely system dependent, prone to causing crashes if not used right, not a sane method of developing large application. Too low-level
  • C: Messy libraries, no reasonable methods for maintaining code in old, large apps.
  • Obj-C: Largely dependent on Apple, the evil step-child of Microsoft. Difficult to setup and use on Windows.
  • C++: Monolithic libraries, horrible hacks atop hacks atop hacks, design patterns implemented in the most obtuse of fashions. Wrestling with the compiler. Obscure and difficult to solve bugs.
  • Java: Slow unless you know exactly what your doing. Support for the language has sort of devolved into a mass of monolithic libraries, while the community moves onto other languages based on the jvm. Terribly verbose.
  • Python: Slow, lack of multithreading or some other efficient concurrency mechanism, transitioning between versions 2.6 to 3.0 which will break compatibility with some libraries until fixed.
  • Lua: Really loved this one for the concise syntax, uniform semantics, efficiency, and small size. It's C interface needs reworking and true concurrency is a no-go.
  • Haskell: Strong typing is a lovely thing when your like me and are not that great at debugging in the first place.
  • Javascript: It's ubiquity is both a flaw and a strength. Terribly slow, virtually no access to the client if running in a browser (could be another strength or weakness) and variable implementation in major browsers which forces workarounds for certain operations.
  • Delphi: Expensive, not widely supported. Every time I look at it I get the gnawing feeling it won't be around for much longer. That and I haven't seen too many jobs available for it.
  • Erlang: Excellent scalability, "concurrency for free", difficult to debug.
  • C#: The doom of every application using it, be it Mono or otherwise. A poison pill. Other than that it's shaping up to what Java should have been.
  • PHP: A scripting language attempting to be more, and failing hard.

Pardon the bit of plagiarism but I like the saying "Pick one, and done." Yeah it's great and all to know multiple languages (or more importantly like another poster said, the idioms and environment surrounding a particular language) but unless you want it to stick you have to invest a significant slice of time to commit it to memory.

link|improve this answer
feedback

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 programming 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|improve this answer
feedback

Well, it is a matter of age and the conditions you have encountered.

I started with Basic because the IBM machine I used has a basic interpreter in its ROM (you could call it via INT 18).

I switched to Assembly because Basic wasn't enough to create a virus like Dark Avenger (yes, I got that virus with a pirated 5 1/4 diskette, trying to learn C++, I never touched to C++ for the next 2 decades) I learned Turbo Pascal because I needed some TSR (that is, terminate and stay resident) to write something like SideKick from Norton. I memorized machine codes to write programs in machine code onto paper in dorm (there was no computers in dorm at that times)

I HAD TO learn COBOL to get my graduate from university, I finished 5 different departments' work in order to get the result. (I successfully completed the projects, but left the university because I was helping the teachers in Pascal and C classes). I even wrote some commercial products with Cobol because it was supporting ISAM indexed files. I used RMCOBOL, without knowing that it has support for colored output, I wrote RMCOLOR, a TSR waiting for special codes to change default colors for the text output.

I saw Windows 3.1 at 1992, it was 7 seven diskettes. I thought it is not productive. One of my friends told me that there is a thing called mouse is used to move that arrow (we were using it with keyboard). I thought "so we will have to buy something to use it". I didn't use it for a while because I'm a little bit mean.

I switched to Borland Pascal Windows because of memory support. The time I used the compiler, I used MaxAvailable to know how much memory is usable, I just got shocked. It was more than 10 megabytes of RAM. I was used to have 640K and that was enough for much of the things I needed to do. Even Bill Gates himself said "640K ought to be enough for everybody"

The first time I saw Delphi, I didn't understand what Mr. Heilsberg intended to. I closed an idiotic window named Object Inspector, than closed another idiotic window called Form1. After that, I couldn't find where to write code and closed Delphi 1 for a few months.

Then we all switched to Windows 95. I used to program with Delphi 2. It was fast, easy, data aware. I bought a Java book because it was really popular. The book was a disaster, I had bad thoughts for Java for a decade. I never learned it.

After Delphi 2,3,4,5,6,7... (4 and 6 were the most problematic by the way) I used Delphi 7 for years. I tried to use MS Visual Studio. There were no sharp languages at those days and they never been as good as Delphi.

I needed to run some of our core algorithms on ARM and Free Pascal really helped me because we implemented all the code in Delphi.

Nowadays I've been working with C++. With QT in fact. QT is really nice and it is a good designed library. All the things I feared to use C++ has a cure with QT. More over, it is cross platform. Now we are programming under Linux to cut TCO. It helped much.

I evaluated C# after a friend of mine requested. Mr Heilsberg created another good language but in signal processing, it has no value. It is slow, it may be secure but it is not created for the job I am doing. It is secure enough to let a 12 years old can write web code.

By the way I still remember Netherlands vs Soviet Union football match, in case you wonder how old I am. I hope you enjoy reading this as I enjoyed writing.

link|improve this answer
feedback

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|improve this answer
feedback

BASIC

E

Pascal / Delphi (school)

Haskell (university, yikes)

C

C++

Java

bash scripting

SQL

Forgot about all the religious wars of my teenage years. These days it's all about comfort a language offers... I've become spoilt ;)

link|improve this answer
feedback

At work I program in the language I have to program in at work. :-) But for my own projects I started using Ruby in 2000. Fun language.

But last year I switched to Erlang. Why?

  • I find that functional programming maps on to my mind much better than OOP.
  • Concurrent programming is powerful, fun, and the only sane path forward in a multi-core world.
  • Erlang is much faster than Ruby (and sometimes that really does matter).
  • I like compiling. :-) Call me a dork, but I like having a sanity check. I like warnings. I like to know when there's dead code. I like it when the computer catches my stupid typos.
  • Pattern-matching is the funnest ever.

It hasn't all been rosey and smooth, though. Erlang has it's warts. And I still turn to Ruby for the super-low-overhead. (Any program of 20 lines or less, I'll bust out the Ruby. $ ruby -e "[your one-liner here]" FTW.)

But for larger programs, Erlang's concurrent functional programming is for me: solid, performant, and fun enough to make me giggle on occasion.

link|improve this answer
feedback

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|improve this answer
feedback

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|improve this answer
feedback
1 2 3 4 5

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