6
votes
7answers
2k views
Dynamic type languages versus static type languages
What are the advantages and limitations of dynamic type languages compared to static type languages?
See also: whats with the love of dynamic languages (a far more argumentative thread...)
6
votes
4answers
260 views
How to Make sure the code is still working after refactoring ( Dynamic language)
How to make sure that code is still working after refactoring ( i.e, after variable name change)?
In static language, if a class is renamed but other referring class is not, then I will get a …
0
votes
5answers
89 views
Writing programs in dynamic languages that go beyond what the specification allows
With the growth of dynamically typed languages, as they give us more flexibility, there is the very likely probability that people will write programs that go beyond what the specification allows.
My …
0
votes
2answers
38 views
Dynamic languages Vs Static languages (can this two be together in the same place)
programming languages are grouped it 2 main classes "Dynamic" & "Static".
- Is this always the case a programming language is in one of them and not in both, I mean can a language be dynamic and …
15
votes
15answers
848 views
How do you program differently in dynamic languages?
How would someone who really knows how to take advantage of dynamic programming languages approach programming differently than someone working in a static language?
I'm familiar with the whole …
6
votes
3answers
241 views
How do I attach a method to a dynamically-created C# type at runtime?
I have been saddled with using an in-house data access library that is effectively XML passed to a stored procedure, which returns XML. There is nothing I can do about this. I tried to get …
0
votes
1answer
31 views
Domain Driven Design efforts in dynamic languages ?
Are you aware of any DDD efforts in a dynamic language ?
Practical resources on DDD tend to decrease quite dramatically when straying from enterprise-oriented solutions (a google search exluding C#, …
2
votes
6answers
169 views
Why is the “Dynamic” part of Dynamic languages so good?
Jon Skeet posted this blog post, in which he states that he is going to be asking why the dynamic part of languages are so good. So i thought i'd preemptively ask on his behalf: What makes them so …
1
vote
3answers
141 views
How can you tell if a language is a “dynamic language”?
I'm trying to get a better handle on what it really means for a language to be "dynamic". I have quite a bit of experience with Lingo, which is the scripting language for the Adobe (formerly …
2
votes
2answers
161 views
Has anbody used Boo and can you comment on your experiences?
I'm looking for a groovy equivalent on .NET
http://boo.codehaus.org/
So far Boo looks interesting, but it is statically typed, yet does include some of the metaprogramming features I'd be looking …
2
votes
14answers
350 views
Is agile (always) identical with dynamic language? [closed]
I have a debate about this with a friend of mine whether agile software development is always identical with dynamic language (like Python, Ruby, Perl, PHP etc) or not.
With dynamic language we can …
42
votes
30answers
2k views
What’s with the love of dynamic Languages
It seems that everybody is jumping on the dynamic, non-compiled bandwagon lately. I've mostly only worked in compiled, static typed languages (C, Java, .Net). The experience I have with dynamic …
3
votes
3answers
306 views
Overload Resolution in C# 4.0 using dynamic types
I don't have access to the C# 4.0 preview yet. But I am curious, what does the C# 4.0 runtime do when invoking an overloaded method in the following case. Does it resolve to the generic overload ... …
10
votes
16answers
782 views
Is there any point for interfaces in dynamic languages?
In static languages like Java you need interfaces because
otherwise the type system just won't let you do certain things.
But in dynamic languages like PHP and Python you just take
advantage of …
3
votes
6answers
406 views
Ruby: More flexibility than Java/C#?
Is is that I'm a newbie learning Ruby, or does it really have more ways to write (the same) things than Java/C#? Also, if it is more flexible than Java, are there any linguistic features of Ruby that …
