I'm making the transition from Java to PHP/Javascript and discovering all the practical aspects of using a weakly typed language.

As I'm in a position to fully compare the two I'd like to know the pros and cons of each approach. Also, are there any other forms of typing out there?

link|improve this question

All pros abd cons are task dependent – Andrey Apr 9 '11 at 19:45
1  
might interest you as well : stackoverflow.com/questions/3376252/… – SpyrosP Apr 9 '11 at 20:16
1  
feedback

4 Answers

up vote 2 down vote accepted

A weakly dynamically typed programming language (like PHP) made that the programmer's mistakes occur as non-coherent behaviours (for instance, the program gonna display stupid informations).

With a strongly dynamically typed language (like python), the programming mistakes causes error message. It makes the mistakes easier to uncover and diagnosis but in general the program became not usable after the message has been shown.

Finally, with a strongly statically typed language (like Java, Ada, OCaml, Haskell, ...) some mistakes can be uncovered at compile time and hence reduce the risk to provide an bugged program. (but the release occurs later)

link|improve this answer
"The release occurs later." - any evidence of that? If we don't talk about some 100 lines trivial programs, I doubt that. – Ingo Apr 10 '11 at 10:27
It is "theoretical" ^^ – Ubiquité Apr 10 '11 at 11:28
feedback

Yes. Python uses Dynamic Typing.

Generally it's a matter of personal preference and the role that the architects of a given language's intended use.

PHP (a scripting language) for example makes sense to be weakly typed, as the tasks it generally performs are far less complex, and require less constraints then say a compiled language.

link|improve this answer
feedback

Regarding your final question, Mathematica is said to be "typeless."

High-level, typeless, dynamic language with consistent symbolic syntax and semantics across all data, functions, and interfaces

link|improve this answer
feedback

PHP/javascript can be used to develope better looking UI's than Java. PHP will be having less constraints and easy to learn and execute than java.

link|improve this answer
That's not really a question of strong/weak typing, is it? – martinstoeckli Apr 9 '11 at 20:01
feedback

Your Answer

 
or
required, but never shown

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