Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

242
votes
32answers
14k 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 have a Dog and Cat ...
24
votes
6answers
2k views

Disadvantages of Scala type system versus Haskell?

I have read that Scala's type system is weakened by Java interoperability and therefore cannot perform some of the same powers as Haskell's type system. Is this true? Is the weakness because of type ...
21
votes
12answers
1k views

Cannot create apply function with static language?

I have read that with a statically typed language like Scala or Haskell there is no way to create or provide a Lisp apply function: (apply #'+ (list 1 2 3)) => 6 or maybe (apply #'list '(list ...
20
votes
4answers
736 views

Is a statically-typed full Lisp variant possible?

Is a statically-typed full Lisp variant possible? Does it even make sense for something like this to exist? I believe one of a Lisp language's virtues is the simplicity of its definition. Would static ...
19
votes
3answers
634 views

Is there a Haskell idiom for updating a nested data structure?

Let's say I have the following data model, for keeping track of the stats of baseball players, teams, and coaches: data BBTeam = BBTeam { teamname :: String, manager :: Coach, ...
19
votes
15answers
3k 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(); Why do we need to ...
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
3answers
5k 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 function parameter ...
13
votes
7answers
536 views

Do you know of a language with Static Type checking where Code is Data?

Can you name language with Static Type checking(like Java) and where Code is Data(like in LISP)? I mean both things in one language.
12
votes
4answers
2k views

Does Java casting introduce overhead? Why?

Is there any overhead when we cast objects of one type to another? Or the compiler just resolves everything and there is no cost at run time? Is this a general things, or there are different cases? ...
11
votes
2answers
195 views

what is statically typed in RPython?

It is often stated that RPython (a subset of Python) is statically typed. (E.g. on Wikipedia.) Initially, I wondered how they would add that to Python and thought that they might have added the ...
11
votes
5answers
404 views

What prevents a statically typed language from having something like Ruby's method_missing?

I don't have much experience with statically typed languages (currently learning Scala and loving it!) but one thing I've noticed is that they don't ever seem to have anything like Ruby's ...
10
votes
6answers
380 views

How does Python's lack of static typing affect maintainability and extensibility in larger projects?

After reading this very informative (albeit somewhat argumentative) question I would like to know your experience with programming large projects with Python. Do things become un manageable as the ...
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 ...
9
votes
1answer
226 views

Why does this code declare a DISTINCT type?

ShlObj.pas line 9922 (as in Delphi XE): type BFFCALLBACK = function(Wnd: HWND; uMsg: UINT; lParam, lpData: LPARAM): Integer stdcall; TFNBFFCallBack = type BFFCALLBACK; {$EXTERNALSYM ...
9
votes
2answers
199 views

Why do web development frameworks tend to work around the static features of languages?

I was a little surprised when I started using Lift how heavily it uses reflection (or appears to), it was a little unexpected in a statically-typed functional language. My experience with JSP was ...
9
votes
2answers
170 views

Is Java-style Groovy as fast as Java?

If I understand correctly Groovy is dynamically typed but since it's almost a superset of Java, static type information may optionally be provided. This could be useful if writing something where ...
9
votes
6answers
660 views

Is float slower than double? Is 64 bit programm runs faster than 32 bit programm

Is using float type is slower than using double type? I heard that modern Intel and AMD CPUs can do calculations with doubles faster than with floats. What about standard math functions (sqrt, pow, ...
9
votes
3answers
270 views

Tired of non-semantic testing to make up for dynamic typing - suggestions?

I used to do a lot of web programming in Rails (PHP before that) before I started studying computer engineering. Since then, I've done a lot of school work in C, and some personal stuff in ...
9
votes
3answers
306 views

Typed metaprogramming languages

I want to do some metaprogramming in a statically typed language, where both my programs and my meta-programs will be typed. I mean this in a strong sense: if my program generator compiles, I want ...
9
votes
8answers
583 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 ...
9
votes
3answers
815 views

What is the purpose of type ascription in Scala?

There's not much info in the spec on what type ascription is, and there certainly isn't anything in there about the purpose for it. Other than "making passing varargs work", what would I use type ...
8
votes
9answers
781 views

Scripting engine with static typing

I am looking for a scripting engine that can be integrated in .NET but NOT with dynamic typing! For example, JavaScript is not suitable, because it is a dynamically typed language. Do you know any?
8
votes
4answers
1k views

Must a Language that Implements Monads be Statically Typed?

I am learning functional programming style. From this link http://channel9.msdn.com/shows/Going+Deep/Brian-Beckman-Dont-fear-the-Monads/, Brian Beckman gave a brilliant introduction about Monad. He ...
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
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
4answers
1k views

Clojure static typing

I know that this may sound like blasphemy to Lisp aficionados (and other lovers of dynamic languages), but how difficult would it be to enhance the Clojure compiler to support static (compile-time) ...
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
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
1answer
230 views

What does super strong typing bring to the table?

I'd like to understand the advantages of super-strong typing, a la SML or Scala, over conventionally strongly typed languages such as Java or c++. Could someone give a brief overview of the ...
7
votes
1answer
1k views

Applying Extension method to generic class with generic type

I was working with the generic class in vb.net. And it seems extension method cannot be applied to generic class without specifying the type. I have this generic class Public Class MyGeneric(Of T) ...
6
votes
7answers
786 views

What can we do with generics in Java to make them look better:

I have this method to transform a List to a Map using one of the properties of the elements of the list: For short it looks like this: private Map<String, List<Diagnostic<? extends ...
6
votes
2answers
201 views

What does “no global type inference” mean regarding Scala?

I have read that Scala's type inference is not global so that is why people must place type annotations on the methods. (Would this be "local" type inference?) I only a little understand that the ...
5
votes
1answer
91 views

clojure sequence type

What's the correct type of a sequence? I have this code: (defrecord MethodInfo [^clojure.lang.ISeq preconds ^clojure.lang.ISeq postconds]) But it doesn't seem to correctly enforce the type ...
5
votes
1answer
227 views

Should Scala's map() behave differently when mapping to the same type?

In the Scala Collections framework, I think there are some behaviors that are counterintuitive when using map(). We can distinguish two kinds of transformations on (immutable) collections. Those ...
5
votes
3answers
711 views

Are there any statically typed, embeddable scripting languages?

I am wondering if there are any statically typed, embeddable scripting languages. Python, JavaScript, etc. are great languages, but they are dynamically typed (that is, types are checked at run time). ...
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
3answers
532 views

Is it possible to specify an anonymous function's return type, in Scala?

I know you can create an anonymous function, and have the compiler infer its return type: val x = () => { System.currentTimeMillis } Just for static typing's sake, is it possible to specify its ...
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
3answers
205 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". For example, types ...
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
17answers
941 views

What's the best statically-typed language for a dynamically-typed language programmer to learn?

I've been a Ruby developer for several years, and a Perl developer before that, with some PHP somewhere in there. I want to expand my knowledge, and think the best way to do that will be by learning ...
4
votes
5answers
122 views

When is runtime type checking ok and when is it a bad design? [closed]

Usually, a mention of checking the type of a variable at runtime results in a comment about bad design. Sometimes it seems like it can't be avoided. I would like to see examples of when runtime type ...
4
votes
5answers
235 views

Testing whether some data is of some type or not in Haskell?

since Haskell has such expressive type system, is there something supported directly that we can query whether some data is of some type? like in Racket, (String? "Hi") (will return true) or like ...
4
votes
1answer
118 views

Why does foreach skip compile time type checking on interface types?

When I use a foreach loop in C#, it appears that no compile time type checking is performed if the item type is an interface type. E.g. class SomeClass {} interface SomeInterface {} ...
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
672 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
1k 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, ...
4
votes
5answers
402 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 tell you what that ...

1 2