Tagged Questions

5
votes
12answers
635 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, Concis …
8
votes
6answers
798 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 re …
4
votes
2answers
80 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 dyn …
3
votes
6answers
229 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 personal …
3
votes
6answers
174 views

What are the limits of type checking and type systems?

Type systems are often criticised, for being to restrictive, that is limiting programming languages and prohibiting programmers to write interesting programmes. Chris Smith claim …
-2
votes
3answers
98 views

Statically typed languages vs. dynamically typed languages

How is the association of type and parameter different in a dynamically typed language than a statically typed language?
3
votes
1answer
31 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 …
1
vote
2answers
84 views

How can I create an instance of type dynamically in Java

Hello. In my Java application I have method public <T extends Transaction> boolean appendTransaction(T transaction) { ... } and inside of this method I need to create …
2
votes
3answers
140 views

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

Hi, 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
2
votes
4answers
155 views

type of object references in ruby

Hello, 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 = …
2
votes
5answers
242 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 …
4
votes
3answers
125 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, y …
4
votes
2answers
226 views

Dynamic typing and return values in Objective-C

Hello! 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 h …
1
vote
7answers
307 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() …
0
votes
2answers
158 views

Cast an object with Type T to Type T<System.Guid>

I inherited a project with a Windows mobile part. To make a long story short, my problem is this: [DBPropertyUpdate("CustomerId")] [DBPropertyRetrieve("CustomerId")] public Custom …

1 2 next
15 30 50 per page