3
votes
8answers
279 views
from X import a versus import X; X.a
This is one of those semi-religious Python questions that I suspect has well reasoned responses lurking in the community. I've seen some Python programmers use the following style …
5
votes
4answers
237 views
Implementing safe duck-typing in C#
After looking at how Go handles interfaces and liking it, I started thinking about how you could achieve similar duck-typing in C# like this:
var mallard = new Mallard(); // doesn …
2
votes
2answers
61 views
Consequences of implementing to_int and to_str in Ruby
I have a class which exposes a string value and an int value (a command output and exit code respectively). In addition to exposing them through to_s and to_i, I'm also using to_st …
3
votes
11answers
525 views
Are there any static duck-typed languages?
Can I specify interfaces when I declare a member?
After thinking about this question for a while, it occurred to me that a static-duck-typed language might actually work. Why can' …
1
vote
2answers
58 views
Duck typing: how would you treat this situation.
Hi,
Relatively new to python. I recently posted a question in regards to validating that a data type is boolean.
[http://stackoverflow.com/questions/1708349/use-a-single-decorato …
10
votes
16answers
777 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 …
15
votes
9answers
991 views
How is duck typing different from the old ‘variant’ type and/or interfaces?
I keep seeing the phrase "duck typing" bandied about, and even ran across a code example or two. I am way too lazy busy to do my own research, can someone tell me, briefly:
the d …
0
votes
2answers
46 views
Is the untyped .net DataSet a duck typed DTO?
Okay, I'm accessing the fields of a data row inside a data set using indexers, but let's consider this as just a syntactical feature. Would you go so far and call it a duck typed t …
2
votes
4answers
114 views
Duck typing library for Silverlight?
Do you know any duck typing library for Silverlight? There are a few for full-blown .Net framework but I'm looking for something lighter.
2
votes
5answers
241 views
Is there a dream language that merges the benefits of dynamic and strong typing?
I would be interested to learn a language that handles objects internally as hashtables (like JavaScript) but could wrap them with strong types to offer the benefits of code comple …
1
vote
5answers
248 views
Python and dictionary like object
I currently toying with Python 3.1 and I need a deep update function for dictionaries (a function that willl recursively update child dictionaries that are inside a parent dictiona …
1
vote
2answers
65 views
Duck typing - what about when you need a concrete type?
Say you are doing a calculator in a dynamic language (Python etc...) and you have an add method.
def Add(x, y)
print x + y
Now if you were to pass in anything but a number t …
9
votes
5answers
390 views
C# and Interfaces - Explicit vs. Implicit
In C#, if a class has all the correct methods/signatures for an Interface, but doesn't explicitly implement it like:
class foo : IDoo {}
Can the class still be cast as that inte …
1
vote
3answers
150 views
game design - handling bonuses / duck typing - python
Hi!
I am currently faced with a design problem in my game design, not terrible but it bothers me enough so I want to ask others opinions :-)
I am currently experimenting with pyg …
3
votes
5answers
314 views
What’s an example of duck typing in Java?
I just recently heard of duck typing and I read the Wikipedia article about it, but I'm having a hard time translating the examples into Java, which would really help my understand …
