vote up 2 vote down star

Duplicate

What's the Love with Dynamic Languages?

The last couple of days I'm busy writing a home brew web application in PHP, a rather popular dynamic language. Coming from a static languages background, mainly Java, some things feel weird to me, and I would like to hear other opinions from people who are maybe more experienced in these dynamic languages. What they like about it, what they don't etc.

What feels really weird to me for instance (at least in PHP) is the inability to type hint method args, variables and function returns. What if a specific method arg the user provides is a string instead of an int, or null, or ...? What does a function return? I feel that this form of coding is not self documenting for starters and also not really robust. A least a lot of checks should be performed on incoming methods args to make the application somewhat robust and safe in my opinion as users of a particular method may not know how fragile it is. The amount of checking could get ridiculous, while type hinting would make all of these checks obsolete.

Do you feel that larger applications can be successfully built and maintained with these dynamic languages?

Looking forward to read other insights and opinions on this!

flag
4  
should be community wiki – SilentGhost Sep 17 at 21:29
Rather than trying to close the post, why don't you just flag the post for moderator attention? meta.stackoverflow.com/questions/392/… – Robert Harvey Sep 17 at 21:36
1  
It's a duplicate anyway. Why would people want to re-open a duplicate? stackoverflow.com/questions/42934/… – George Stocker Sep 17 at 21:42

closed as subjective and argumentative by Alan, David, Burkhard, Greg Hewgill, Grant Wagner Sep 17 at 21:37

2 Answers

vote up 3 vote down

Summary: programming is fun again.

Serious answer this time. There are plenty of reasons, not just one. Mostly, these are failings in C++ and Java:

  • Checked exceptions in Java
  • Lots of boilerplate code
  • Nasty type systems (requires lots of casts, and spending lots of time modelling things).
  • Not high-level enough: witness the IO system in either.

PHP offers the advantage that it frees the programmer from these. It also has a few major advantages of its own:

  • deployed on every web server known to man
  • every function you will ever need is available in the standard library
  • its easy to learn if you can't code

Python and Ruby solve the problem, and offer their own, different advantages:

  • beautiful elegant languages
  • well designed, massive set of libraries available

Lua solves its own niche, embedding in larger C/C++ applications (all the other scripting languages offer that, but Lua is designed for it). Javascript is the only language in its class. Perl is an old workhorse, but I've never seen anyone leave Python for Perl - its complex, and people don't like complex. But it offers many of the above advantages.

One of the most compelling advantages is duck-typing, which is available in nearly all of these languages. I won't describe it fully here, but it basically means that you dont need to do extensive modelling, interfaces, factories, and all those other bloat that people dislike in Java. Its less type-safe, but people seem to be OK with that.

Basically, programming is fun again.

link|flag
vote up 2 vote down

You've hit the nail on the head. Dynamic languages free you from modelling all that stuff. Type hints, checks, annotations just get in the way of coding! Type systems? We don't understand them anyway!

Of course, you soon get to 100,000 lines of nightmarish code, but you'll be sold to Google by then, so it doesn't matter.

link|flag
It's the ability to hack code to just do stuff. Broken, untestable stuff that'll have to be re-written. But quick to write. – Joe Sep 17 at 21:37
untestable? That's funny, Ruby on Rails has a more exhaustive test suite than just about any project I have ever seen. They are very keen on "if it's broken, write a test to show prove it, submit a patch, and show your test now passes". – Matt Sep 17 at 21:39
1  
Good tests are an acceptable substitute for strong type-checking. – Robert Harvey Sep 17 at 21:40

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