Dynamic Typing is a property of a programming language where type checks are performed mostly at run time.
3
votes
3answers
69 views
What's a best practice for using dynamic type in ASP.NET MVC 4?
As we know Microsoft introduced the dynamic type a long time ago. And I also applied it in some case in the ASP.NET MVC application. But to me, it is not good for all cases. In specific, it's seen to ...
0
votes
2answers
42 views
Types in Dynamically Typed Languages
A dynamically typed language (i.e Python) performs Type Checking at run-time, so a variable or parameter can refer to a value of any type.
Does the language definition requires the variables and ...
2
votes
2answers
58 views
Dynamic type cast from id to class in objective c
I would like to cast dynamically in Objective C and access instance properties. Here a pseudo code:
id obj;
if (condition1)
obj = (Class1*)[_fetchedResults objectAtIndex:indexPath.row];
else
...
4
votes
3answers
72 views
Identifying a subclass given a pointer to its base class?
Suppose that I have an abstract base class Parent and subclasses Child1 and Child2. If I have a function that takes a Parent*, is there a way (perhaps with RTTI?) to determine at runtime whether it's ...
15
votes
3answers
496 views
To what extent is C++ a statically-typed language?
I used to think that the answer to this question was "100%", but I've recently been pointed to an example that makes it worth thinking twice. Consider a C array declared as an object with automatic ...
0
votes
0answers
23 views
Compiler consistency check for methods that take and return id objects
I'm studying Objective-C from Stephen Kochan's book, Programming in Objective-C, 4th edition.
In exercise 9.4, there's a question that asks to change the argument and return types of a method named ...
0
votes
1answer
47 views
Can I say that in languages with Dynamic Type Binding all variable are allocated on a heap?
I am studying about the binding process and the classification of variable based on storage binding. So, I faced with four kind of variable:
Static variables: these are bound to memory before ...
3
votes
2answers
115 views
Haskell - help simplifying a function with advanced type features
I'm writing an interpreter for a dynamically typed language in Haskell.
Like most dynamically typed language interpreters, my program is also needs to check types in runtime. One of the most used ...
0
votes
2answers
113 views
Can this be done with static typing?
This method attempts to select a (std::vector<?>) based on a key (std::string), where ? is either int or float:
template<typename L>
inline void ...
1
vote
1answer
70 views
How to add attribute maps of different types?
Here's a C++(11) design problem:
Suppose I want to create a graph data structure, where you can map the nodes/edges to arbitrary attributes. (It's not really relevant that it's a graph, it might be ...
0
votes
2answers
148 views
How could I check for a particular property at runtime, along with its return type?
Since property named "age" would always have a selector named "age" as well, I could use respondsToSelector as this question suggests and that will tell me if a particular selector exists at runtime ...
6
votes
2answers
156 views
Is this a safe use of unsafeCoerce?
I have a situation where I am at the moment using the extremely scary function unsafeCoerce. It's not for anything important fortunately, but I was wondering whether this seems to be a safe usage of ...
0
votes
1answer
42 views
Looking for a particular programming language [closed]
Is there any programming language which has dynamic types, implicit types conversion, user defined types (and allows implicit conversions of this as well) and NO floating point arithmetic?
0
votes
3answers
108 views
Storing elements of different type in a vector/array in C++?
I'm trying to create a simple dynamic language interpreter in C++. I'd like to be able to declare dynamically typed arrays, but I'm not sure how to store them in some object in C++.
In Ruby/Python I ...
1
vote
1answer
53 views
Where can I find more on variable type prediction for Javascript?
Quoting from this academic paper: Syntactic and Semantic Prediction in Dynamic
Languages:
IntelliSense is practically based on the knowledge of variables type.
Hence the symbols describing ...
2
votes
4answers
155 views
How to identify numpy types in python?
How can one reliably determine if an object has a numpy type?
I realize that this question goes against the philosophy of duck typing, but idea is to make sure a function (which uses scipy and numpy) ...
0
votes
4answers
247 views
scipy function always returns a numpy array
I'm encountering a scipy function that seems to return a numpy array no matter what's passed to it. In my application I need to be able to pass scalars and lists only, so the only "problem" is that ...
1
vote
6answers
68 views
How to safeguard with dynamic typing
Our project is getting kind of large, and the other day I ran into this problem, when I tried to add a simple error message to a function:
def create_report(id):
report = new_report(id)
if ...
1
vote
1answer
387 views
MVC LINQ dynamic orderBy getting column type
I am trying to dynamically order a list of products.
Product:
price (int)
name (string)
So far I have managed to get the following:
string columnToOrderBy = "price";
ParameterExpression param = ...
0
votes
5answers
57 views
Python type comparision
Ok, so I have a list of tuples containing a three values (code, value, unit)
when I'm to use this I need to check if a value is an str, a list or a matrix. (or check if list and then check if list ...
1
vote
4answers
180 views
Definition of statically typed and dynamically types
Which of these two definitions is correct?
Statically typed - Type matching is checked at compile time (and therefore can only be applied to compiled languages)
Dynamically typed - Type matching is ...
3
votes
2answers
323 views
is this an example of weak typing or dynamic typing
Is the quality of a language where it's not required to declare a variables type (such as PHP and Perl) known as weak typing or dynamic typing? I'm having trouble getting my head around the two terms. ...
0
votes
1answer
125 views
Subscribing to Microsoft Word COM events
I'm writing code to access the MS Word automation COM interface using dynamic types in C# 4.0. It works great and it is very easy to use.
What I don't know is how to subscribe events. I would like to ...
1
vote
1answer
508 views
MOQ returning dynamic types as object issue
pologise if this questions has been asked but I couldn't find the answer anywhere.
My problem is when mocking a return method using MOQ where that method returns a dynamic type. I'm using a third ...
13
votes
1answer
301 views
How to apply a polymorphic function to a Dynamic value
Is there a sane way to apply a polymorphic function to a value of type Dynamic?
For instance, I have a value of type Dynamic and I want to apply Just to the value inside the Dynamic. So if the value ...
0
votes
3answers
318 views
Converting dynamic to object
Here is my code:
MyClass here = new MyClass();
IEnumerable<MyClass> vats = (IEnumerable<MyClass>)here.All();
The All() method returns IEnumerable<dynamic>. I want to convert it to ...
4
votes
2answers
208 views
How to describe function arguments in dynamic typed languages?
My question is more oriented toward Python, but it may also be about JavaScript or other scripting languages.
I usually develop with statically typed languages (Java, C++, ActionScript, ...).
I like ...
0
votes
2answers
446 views
ASP.net C# Variable Declaration Inside IF Block
I tried to use the following code in ASP.net C#:
@{
var Host = Request.ServerVariables["HTTP_HOST"];
if (Host.Contains("example.com")) {
var Online = true;
}
if ...
1
vote
4answers
111 views
Dynamic typing design : is recursivity for dealing with lists a good design?
Lacking experience with maintaining dynamic-typed code, I'm looking for the best way to handle this kind of situations :
(Example in python, but could work with any dynamic-typed language)
def ...
4
votes
4answers
336 views
Duck typing: how to avoid name collisions?
I think understand the idea of duck typing, and would like to use it more often in my code. However, I am concerned about one potential problem: name collision.
Suppose I want an object to do ...
1
vote
3answers
183 views
In what situations / circumstances a dynamic_cast<> can fail?
While fixing a bug in a huge code base, I am observing a strange situation, where the dynamic type of a reference changes from Original Derived type to Base type! I am providing the minimal code to ...
2
votes
1answer
135 views
any workarounds to get polymorphic functions in Data.Dynamics?
The function dynApply from Data.Dynamics looks very nice, but in reality it requires a monomorphic function type. So, you couldn't write
dynApply (toDyn id) (toDyn 3)
I have some code that needs ...
3
votes
2answers
2k views
Java Instantiate Class at Runtime with parameters
I am using an abstract factory to return instances of concrete subclasses.I would like to instantiate the subclasses at runtime given a String of the concrete class name. I also need to pass a ...
2
votes
1answer
137 views
Return dynamic type
i know template like
T add(T)(T a, Tb){
return a + b;
}
But this need to user ask which type will be return, me i want compute inside mehtod which type will be returned like:
T getField( ...
1
vote
1answer
39 views
Combining Dynamic Types
This might be a dumb question, but I'd love to know if there was a way I could do this.
To ease the process of importing lots and lots of Space-delimited files, I came up with a simple scheme to ...
1
vote
3answers
288 views
Can't figure out this dynamic typing thing
I'm putting together a list of interview questions for someone interviewing to be a Cocoa developer. I'm a programmer, but I've never done Objective-C. I stumbled upon an interesting question that ...
7
votes
5answers
341 views
Using dynamic typing in D, a statically typed language
I was implementing a dynamic typing library for D when I ran across an interesting problem.
Right now, I've succeeded in making a function called dynamic() which returns a dynamic version of an ...
3
votes
2answers
281 views
Get object type in runtime
I have the code below. I get an object whose type I don't know. I have to check
three if conditions to check its type, then make the right cast.
Is there any way to get the object type at runtime, ...
3
votes
1answer
1k views
argument isKindOfClass: [NSNumber class] - sane way to check this?
So I was playing with something where the class type of the arg is unknown until runtime.
like this:
- (NSNumber *)doWhatever:(id)arg
{
// this ALWAYS FAILS
if ([arg isKindOfClass:[NSNumber ...
2
votes
4answers
583 views
Advantages of Weak Typing over Strong Typing
So, I've read a bunch of similar questions on Stack Overflow regarding this issue, and I think I have a good grasp of what the differences between the two are. My question is whether there is any ...
3
votes
8answers
753 views
Java: How to declare that a variable implements an interface?
In Objective-C, I could do:
id<HTTPRequestDelegate> delegate;
to say that delegate (a variable of type id) conforms to the HTTPRequestDelegate protocol (or implements the HTTPRequestDelegate ...
6
votes
2answers
644 views
Is Prolog an untyped language? What's the difference between Prolog and dynamically typed languages?
If Prolog has clear distinction between strings, numbers, atoms, lists and compound structures how can it be called untyped.
And how does it differ from dynamically typed languages like Lisp for ...
6
votes
1answer
191 views
Implicit Conversion from Any to Dynamic
Why isn't the following working? (Yes, I am working with 2.9.0final and turned the "-Xexperimental" option on.)
implicit def any2Dynamic(a: Any) = new Dynamic {
def applyDynamic(name: String)(args: ...
1
vote
1answer
433 views
Is there any way to create dynamic types at runtime without having them permanently in the app domain?
My current understanding of dynamically generated types is this:
If you generate a type via CodeDom and load it into an AppDomain, there is no way to unload that type (i.e. Assembly.Unload(...) ...
7
votes
2answers
356 views
Haskell — get TypeRep from concrete type instance
I want to write a function with this type signature:
getTypeRep :: Typeable a => t a -> TypeRep
where the TypeRep will be the type representation for a, not for t a. That is, the compiler ...
0
votes
0answers
66 views
'pattern matching' on Typeable types — revised [duplicate]
Possible Duplicate:
'pattern matching' on Typeable types
Suppose, for example, we have the following data structure:
data Foo = Bool Bool | Int Int | Double Double
Now, is there ...
3
votes
3answers
172 views
'pattern matching' on Typeable types
Suppose, for example, we have the following data structure:
data Foo = Bool Bool | Int Int | Double Double
Now, is there an easier way to do this:
foo :: Typeable a => a -> Foo
foo x = maybe ...
2
votes
2answers
661 views
Java annotation dynamic typecast
I have 2 java annotation types, let's say XA and YA. Both have some method(). I parse the source code and retrieve Annotation object. Now I'd like to dynamicaly cast the annotation to the real type of ...
1
vote
2answers
258 views
Implicit Conversion Not Working for Dynamic Type
I am running into a problem when trying to implicitly convert one of my dynamic types. There are two assemblies with definitions similar to the following:
Configuration.dll:
public class ...
5
votes
5answers
879 views
Ioc Containers and dynamic languages (take 2)
I've been reading up a lot on Dependency Injection, Inversion of Control, and IoC containers. I also primarily program in dynamic languages (PHP at work, Python at home). Here are the things I'm ...

