Tagged Questions

3
votes
10answers
286 views

Can automated unit testing replace static type checking?

I've started to look into the whole unit testing/test-driven development idea, and the more I think about it, the more it seems to fill a similar role to static type checking. Both …
3
votes
11answers
524 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' …
4
votes
2answers
79 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 …
2
votes
6answers
171 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
96 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?
10
votes
14answers
1k views

Why is C# statically typed?

I am a PHP web programmer who is trying to learn C#. I would like to know why C# requires me to specify the data type when creating a variable. Class classInstance = new Class(); …
3
votes
3answers
51 views

How Does Static Typing Limit Macros?

I was reading Paul Graham's "The Hundred-Year Language" article. http://www.paulgraham.com/hundred.html In there he makes a claim that static typing "preclude[s] true macros". …
2
votes
3answers
139 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
116
votes
31answers
5k views

Interface vs Base class

When should I use an interface and when should I use a base class? Should it always be an interface if I don't want to actually define a base implementation of the methods? If I …
4
votes
3answers
330 views

Python 3 and static typing

I didn't really pay as much attention to Python 3's development as I would have liked, and only just noticed some interesting new syntax changes. Specifically from this SO answer f …
3
votes
3answers
195 views

assign type to variable, use variable with generic static class

I'm working in a C# web service with a generic static class that takes a type. I was wondering why this does not compile: Type type1 = typeof(MySnazzyType); Assert.AreEqual(0, Co …
2
votes
2answers
222 views

F# and Operator Overloads

Ok, so can someone explain to me why F# allows you to overload the > and ^ operators, but doesn't allow you to use them? + (op_Addition): Works just fine. ^ (op_Concatenate): Comp …
3
votes
1answer
93 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 t …
2
votes
5answers
158 views

Static/strong typing and refactoring

It seems to me that the most invaluable thing about a static/strongly-typed programming language is that it helps refactoring: if/when you change any API, then the compiler will te …

1 2 next
15 30 50 per page