Tagged Questions
In Duck Typing an object's methods and properties determine its valid semantics rather than its membership in a particular class or its interface.
33
votes
10answers
2k 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 difference between a ...
29
votes
4answers
492 views
Duck typing in the C# compiler
Note This is not a question about how to implement or emulate duck typing in C#...
For several years I was under the impression that certain C# language features were depdendent on data structures ...
16
votes
5answers
451 views
How to handle “duck typing” in Python?
I usually want to keep my code as generic as possible. I'm currently writing a simple library and being able to use different types with my library feels extra important this time.
One way to go is ...
15
votes
7answers
378 views
What's the relationship between C++ template and duck typing?
To me, C++ template used the idea of duck typing, is this right? Does it mean all generic types referenced in template class or method are duck type?
14
votes
7answers
4k views
How can I tell if a python variable is a string or a list?
I have a routine that takes a list of strings as a parameter, but I'd like to support passing in a single string and converting it to a list of one string. For example:
def func( files ):
for f ...
14
votes
16answers
1k 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 ...
13
votes
6answers
3k views
Duck type testing with C# 4 for dynamic objects
I'm wanting to have a simple duck typing example in C# using dynamic objects. It would seem to me, that a dynamic object should have HasValue/HasProperty/HasMethod methods with a single string ...
12
votes
10answers
2k views
What are some advantages of duck-typing vs. static typing?
I'm researching and experimenting more with Groovy and I'm trying to wrap my mind around the pros and cons of implementing things in Groovy that I can't/don't do in Java. Dynamic programming is still ...
11
votes
3answers
500 views
What is duck typing?
I came across the term duck typing while reading random topics on software online. Didn't although completely understood what it is?
9
votes
3answers
321 views
Simulating duck typing in Java
The problem: I'd like to be able to generically access in Java any property/field on a Java ojbect similarly to how a dynamic language (think Groovy, JavaScript) would. I won't know at the time I'm ...
9
votes
5answers
622 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 interface?
8
votes
3answers
135 views
How to document a duck type?
I'm having documentation bloat on me, as anytime I encounter a complex duck-type, I need some way to say "this duck type" but instead get caught in an endless cycle of "your function requires this of ...
8
votes
6answers
673 views
Duck typing, must it be dynamic? [CW]
Wikipedia currently says about duck-typing:
In computer programming with
object-oriented programming languages,
duck typing is a style of dynamic
typing in which an object's current
set of ...
8
votes
5answers
310 views
“Duck typing” etymology?
Is there a story behind the name ''duck typing'', I've heard ''if it looks like a duck, and sounds like a duck, let's call it a duck'' (or something like that), but why a duck? Why not ``if it looks ...
7
votes
6answers
204 views
Why interfaces must be declared in Java?
Perhaps a stupid question, but I was wondering today about the frequent case in which one has several classes (from Java libraries, or some other library) that have some common methods, but this ...
7
votes
3answers
226 views
Simulating aspects of static-typing in a duck-typed language
In my current job I'm building a suite of Perl scripts that depend heavily on objects. (using Perl's bless() on a Hash to get as close to OO as possible)
Now, for lack of a better way of putting ...
7
votes
3answers
378 views
Should I define interfaces in Duck Typed languages?
I'm just about to write my first application in a duck typed language (Groovy).
If I was to write the same application in a static typed language then I would need to define some interfaces. ...
7
votes
4answers
183 views
Generics and Duck-Typing XML in .NET?
I'm working with some XML representations of data instances. I'm deserializing the objects using .NET serialization but something in my soul is disturbed by having to write classes to represent the ...
7
votes
13answers
781 views
Uses for Dynamic Languages
My primary language right now is D, and I'm in the process of learning Python because it's required for a course I'm taking. While I understand why dynamic languages would be a breath of fresh air ...
6
votes
2answers
66 views
Python documentation: iterable many times?
In documenting a Python function, I find it more Pythonic to say:
def Foo(i):
"""i: An interable containing…"""
…rather than…
def Foo(i):
"""i: A list of …"""
When i really doesn't need ...
6
votes
4answers
776 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't implement IDuck ...
5
votes
5answers
110 views
How can I balance “Pythonic” and “convenient” in this case?
I have an "interface" that will be implemented by client code:
class Runner:
def run(self):
pass
run should in general return a docutils node but because the far far most
common case is ...
5
votes
2answers
190 views
F# and duck-typing
Let's say I defined in F# the following two types:
type Dog = { DogName:string; Age:int }
type Cat = { CatName:string; Age:int }
I was expecting the following method to work for both cats and dogs:
...
5
votes
3answers
345 views
Does C# have an equivalent to Scala's structural typing?
In Scala, I can define structural types as follows:
type Pressable = { def press(): Unit }
This means that I can define a function or method which takes as an argument something that is Pressable, ...
5
votes
5answers
1k 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 dictionary).
But I think, ...
5
votes
6answers
2k 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 understanding.
Would anyone ...
5
votes
5answers
399 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 completion/intellisense in ...
5
votes
11answers
927 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't predefined classes ...
5
votes
3answers
609 views
Will C#4.0 dynamic objects have some facility for duck typing?
In C#4.0 we're going to get dynamic types, or objects whose "static type is dynamic", according to Anders. This will allow any method invocation resolution to happen at runtime rather than compile ...
5
votes
3answers
446 views
Could I improve this method with duck typing?
Hopefully I haven't misunderstood the meaning of "duck typing", but from what I've read, it means that I should write code based on how an object responds to methods rather than what type/class it is.
...
4
votes
3answers
55 views
How can I create a dynamic multi-property Select on an IEnumerable<T> at runtime?
I asked a very similar question yesterday, but it wasn't until today I realised the answer I accepted doesn't solve all my problems. I have the following code:
public Expression<Func<TItem, ...
4
votes
3answers
98 views
How can I create a dynamic Select on an IEnumerable<T> at runtime?
Given that I have an IEnumerable<T>, where T is any object, how can I select a specific property from it, given that I know the name of the one of the property names at run time as a string?
...
4
votes
3answers
76 views
Pythonic way to handle a method on network data structure
So, another question on what is Pythonic! The application domain in this case is network algorithms (as in, nodes, edges, Dijkstra, that kind of thing...), something I have only previously coded in ...
4
votes
3answers
196 views
Python duck-typing for MVC event handling in pygame
A friend and I have been playing around with pygame some and came across this tutorial for building games using pygame. We really liked how it broke out the game into a model-view-controller system ...
4
votes
3answers
578 views
Most Up-To-Date C# Duck-Typing Library
The title says it all, basically. What is the current state of the art on duck typing for C# below version 4.0?
I know about Duck Typing Project, I know that BLTookit has something to that end, but ...
4
votes
7answers
667 views
Besides dynamic typing, what makes Ruby “more flexible” than Java?
I've been using Java almost since it first came out but have over the last five years gotten burnt out with how complex it's become to get even the simplest things done. I'm starting to learn Ruby at ...
4
votes
11answers
915 views
How do I argue against Duck-typing in a strongly typed language like Java?
I work on a team of Java programmers. One of my co-workers suggests from time-to-time that I do something like "just add a type field" (usu. "String type"). Or code will be committed laden with "if ...
4
votes
4answers
483 views
When you say Ruby is reflective, does this mainly refer to “duck typing”?
I was reading a text describing Ruby and it said the following:
Ruby is considered a “reflective”
language because it’s possible for a
Ruby program to analyze itself (in
terms of its ...
4
votes
9answers
546 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 fairly consistently ...
3
votes
2answers
165 views
How to translate this duck-typing (Python) to Java generics?
Consider the following simple Python function by way of example:
def quantize(data, nlevels, quantizer=lambda x, d: int(floor(x/d))):
llim = min(data)
delta = (max(data) - llim)/(nlevels - 1) ...
3
votes
5answers
169 views
Realisticly why would I use duck-typing or inversion of control?
I'm just beginning to learn about Duck-typing, and Inversion of Control.
In practical real world examples why would I want to incorporate these concepts into my code?
3
votes
4answers
206 views
Pythonic way to verify parameter is a sequence but not string
I have a function that gets a list of DB tables as parameter, and returns a command string to be executed on these tables, e.g.:
pg_dump( file='/tmp/dump.sql',
tables=('stack', 'overflow'),
...
3
votes
2answers
261 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_str and to_int, like ...
3
votes
4answers
273 views
game design - handling bonuses / duck typing - python
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 pygame, I have developed a ...
2
votes
2answers
159 views
“Iterating” over an async method
A few related questions about the async CTP:
I can iterate over an Iterator Block (an IEnumerable<T> yield-returning T) using GetEnumerator() and then enumerator methods MoveNext(), and ...
2
votes
2answers
107 views
Duck typing / dynamic proxies on existing instances of objects
I have an object handed into our library and passed through various processes. I need to attach some additional information to these objects as they pass through various stages and out the other end - ...
2
votes
4answers
60 views
Can I get dynamic to work like this?
I have a Patient class:
class Patient {
public string First_Name { get; set; }
public string Last_Name { get; set; }
public DateTime Date_of_Birth { get; set; }
}
I also have an interface:
...
2
votes
1answer
49 views
Member verification vs Interface
I was ready up on Ruby's method of enforcing interfaces w/ dynamic typing by checking for the existence of methods/properties that satisfy an interface.
In what ways is this overall just a better ...
2
votes
4answers
253 views
How to detect an array- or set-like value while avoiding type checks
I have a method which accepts an argument which can be an Array/Set-like object, or a Hash. The gist of the method is something like:
def find(query = {})
if Array === query or Set === query
...
2
votes
8answers
163 views
Java: How to declare that a variable implements an interface?
In Objective-C, I could do:
id delegate<HTTPRequestDelegate>;
to say that delegate (a variable of type id) conforms to the HTTPRequestDelegate protocol (or implements the HTTPRequestDelegate ...