Tagged Questions

Dynamic typing is a property of a type system where type checking of terms is intermixed with evaluation.

learn more… | top users | synonyms

17
votes
4answers
1k views

Static/Dynamic vs Strong/Weak

I see these terms banded around all over the place in programming and I have a vague notion of what they mean. A search shows me that such things have been asked all over stack overflow in fact. As ...
14
votes
5answers
2k views

How does a virtual machine work?

I've been looking into how programming languages work, and some of them have a so-called virtual machines. I understand that this is some form of emulation of the programming language within another ...
10
votes
2answers
301 views

When is sqlite's manifest typing useful?

sqlite uses something that the authors call "Manifest Typing", which basically means that sqlite is dynamically typed: You can store a varchar value in a "int" column if you want to. This is an ...
10
votes
7answers
2k views

What is the preferred way to type-check variables in Python?

I have a Python function that takes a numeric argument that must be an integer in order for it behave correctly. What is the preferred way of verifying this in Python? My first reaction is to do ...
10
votes
5answers
5k views

Using Variables for Class Names in Python?

I want to know how to use variables for objects and function names in Python. In PHP, you can do this: $className = "MyClass"; $newObject = new $className(); How do you do this sort of thing in ...
9
votes
8answers
585 views

Is there a compiled* programming language with dynamic, maybe even weak typing?

I wondered if there is a programming language which compiles to machine code/binary (not bytecode then executed by a VM, that's something completely different when considering typing) that features ...
8
votes
4answers
3k views

Can someone tell me what Strong typing and weak typing means and which one is better?

Can someone tell me what Strong typing and weak typing means and which one is better?
7
votes
7answers
605 views

How to deal with Python ~ static typing? [closed]

I am from Java world and I wonder what is so great about dynamic typing in Python besides missing errors while compiling the code? Do you like Python's typing? Do you have an example where it helped ...
7
votes
3answers
202 views

Where do you benefit from dynamic typing?

How often do you take advantage of dynamic typing in a way that really wouldn't be feasible in a statically typed language? What I'm interested in is, how often these are used within real world ...
6
votes
5answers
259 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 ...
6
votes
1answer
145 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: ...
6
votes
2answers
109 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 ...
6
votes
2answers
290 views

SQLite3's dynamic typing

SQLite3 uses dynamic typing rather than static typing, in contrast to other flavors of SQL. The SQLite website reads: Most SQL database engines (every SQL database engine other than SQLite, as ...
6
votes
12answers
2k views

Which out of Python, Ruby, F# is better for learning as first programming language with dynamic type system?

I am thinking to learn programming language with dynamic type system. Which one should I learn first? Criteria: I can learn and start programming in a day or two Easy, Concise In few days I ...
5
votes
5answers
318 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 ...
5
votes
5answers
213 views

why is dynamic typing worth it?

In asking this question I want to make it clear that I am not talking about type inference. Type inference I can definitely see a purpose too, and to my knowledge doesn't cause a performance hit. What ...
5
votes
2answers
584 views

Does new 'dynamic' variable type in .NET 4.0 solve the single/multiple method dispatch issue in CLR?

The problem of single dispatch is mostly familiar to people engaged in coding with statically typed languages like Java and C#. The basic idea is: While the runtime polymorphism allows us to dispatch ...
5
votes
5answers
245 views

Which languages are dynamically typed and compiled (and which are statically typed and interpreted)?

In my reading on dynamic and static typing, I keep coming up against the assumption that statically typed languages are compiled, while dynamically typed languages are interpreted. I know that in ...
5
votes
4answers
472 views

OOP and Dynamic Typing (not Static vs Dynamic)

What OOP principles, if any, don't apply or apply differently in a dynamically typed environment as opposed to a statically-typed environment (for example Ruby vs C#)? This is not a call for a Static ...
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
8answers
3k views

Dynamic typing in C#

I know this does not work, however does anyone have a way of making it work? object obj = new object(); MyType typObj = new MyType(); obj = typObj; Type objType = typObj.GetType(); ...
5
votes
2answers
903 views

Python Programming - Rules/Advice for developing enterprise-level software in Python?

I'm a somewhat advanced C++/Java Developer who recently became interested in Python and I enjoy its dynamic typing and efficient coding style very much. I currently use it on my small programming ...
4
votes
2answers
293 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 ...
4
votes
3answers
127 views

Do you know of any examples of elegant solutions in dynamically typed languages?

Imagine two languages which (apart from the type information) do have exactly the same syntax, but one is statically typed while the other one uses dynamic typing. Then, for every program written in ...
4
votes
2answers
137 views

Is there a citation available for 'a growing rebellion' against strict typing systems? [closed]

The FAQ for the new Go language explicitly makes this claim: There is a growing rebellion against cumbersome type systems like those of Java and C++, pushing people towards dynamically typed ...
4
votes
6answers
673 views

Why Is Dynamic Typing So Often Associated with Interpreted Languages?

Simple question folks: I do a lot of programming (professionally and personally) in compiled languages like C++/Java and in interpreted languages like Python/Javascript. I personally find that my code ...
4
votes
3answers
206 views

Why do COM libraries used from C# 4.0 require such heavy use of dynamic types?

In the C# 4.0 demos, I'm seeing lots of code that uses the dynamic type. For example, the following code sets the value of an Excel cell: excel.Cells[1, 1].Value = ... However, you can also access ...
4
votes
2answers
990 views

Dynamic typing and return values in Objective-C

I have run into a very strange behaviour I can’t make sense of. I have a Texture class with contentWidth property of type int. This class is wrapped in a Image class that has a width property of type ...
3
votes
2answers
84 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
3answers
134 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 ...
3
votes
3answers
714 views

Pure ANSI-C: make generic array

Is it possible to replicate an generic array in pure ANSI-C? I have this struct which holds an array (for floats at the moment) and some variables like size and capacity for mutation in the array. ...
3
votes
1answer
129 views

Different approaches to dynamic typing in the CLR and JVM

.NET 4.0 introduces new support for dispatching invocations on dynamically typed objects. As far as I can make out, this involves: no change to the CLR new types in the BCL new compilers that ...
3
votes
3answers
776 views

What is the difference between statically typed and dynamically typed languages?

I hear a lot that new programming languages are dynamically typed but what does it actually mean when we say a language is dynamically typed vs. statically typed? Thanks
3
votes
4answers
2k views

type of object references in ruby

I am new to Ruby and currently trying a few examples from the Ruby book I am using as a guide: class Account attr_accessor :balance def initialize(balance) @balance = balance end end class ...
2
votes
2answers
72 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
106 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( ...
2
votes
1answer
157 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
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 ...
2
votes
4answers
113 views

What's the difference between Object, *, and no type at all?

Is there any difference between those three declarations? var x; var y:Object; var z:*; Is there anything in AS that's not an Object?
2
votes
2answers
219 views

Dynamic Typing without duck typing?

I'm used to dynamic typing meaning checking for type info of object/non object oriented structure at runtime and throwing some sort of type error, ie if it quacks like a duck its a duck. Is there a ...
2
votes
6answers
256 views

Is the a pattern for iterating over lists held by a class (dynamicly typed OO languages)

If I have a class that holds one or several lists, is it better to allow other classes to fetch those lists (with a getter)? Or to implement a doXyzList/eachXyzList type method for that list, passing ...
2
votes
4answers
1k views

.NET generic class instance - passing a variable data type

As the title suggests, I'm tyring to pass a variable data type to a template class. Something like this: frmExample = New LookupForm(Of Models.MyClass) 'Works fine Dim SelectedType As Type = ...
2
votes
2answers
215 views

Java Best Practice for type resolution at runtime

I'm trying to define a class (or set of classes which implement the same interface) that will behave as a loosely typed object (like JavaScript). They can hold any sort of data and operations on them ...
2
votes
3answers
95 views

Dynamically typed class generates compiler warnings on method selection

Perhaps this is the wrong way to go about this, but it seems like such a clean and workable approach that I wonder how I can make the compiler warning go away? @interface SomeView : UIView { ...
2
votes
3answers
469 views

Convert object type to subclassed object type in Objective-C

Say that I have Class A and Class B. Class B is a subclass of Class A. Class A contains some properties and then Class B extends the Class A superclass by adding some additional properties, specific ...
2
votes
3answers
997 views

Is it defined behavior to change an Objective-C object's isa?

In Objective-C, you can change an object's dynamic type at runtime by assigning to it's isa member variable: id object = ...; object->isa = [SomeClass class]; Is this undefined behavior? I'm ...
1
vote
1answer
90 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 ...
1
vote
1answer
33 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
2answers
112 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 ...
1
vote
1answer
103 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(...) ...

1 2