Tagged Questions

A tag for questions related to the design of any aspect of programming languages.

learn more… | top users | synonyms

180
votes
13answers
4k views

Why must we define both == and != in C#?

The C# compiler requires that whenever a custom type defines operator ==, it must also define != (see here). Why? I'm curious to know why the designers thought it necessary and why can't the ...
136
votes
14answers
6k views

“Least Astonishment” in Python: The Mutable Default Argument

Anyone tinkering with python long enough has been bit (or torn to pieces) by the following issue: def foo(a=[]): a.append(5) return a Python novices would expect this function to always ...
83
votes
9answers
2k views

Why are private fields private to the type, not the instance?

In C# (and many other languages) it's perfectly legitimate to access private fields of other instances of the same type. For example: public class Foo { private bool aBool; public void ...
71
votes
7answers
26k views

Function overloading by return type?

Why don't more mainstream statically typed languages support function/method overloading by return type? I can't think of any that do. It seems no less useful or reasonable than supporting overload ...
64
votes
10answers
14k views

Why doesn't Java support unsigned ints?

Why doesn't Java include support for unsigned integers? It seems to me to be an odd omission, given that they allow one to write code that is less likely to produce overflows on unexpectedly large ...
63
votes
7answers
3k views

What are Haskell's strictness points?

We all know (or should know) that Haskell is lazy by default. Nothing is evaluated until it must be evaluated. So when must something be evaluated? There are points where Haskell must be strict. I ...
60
votes
2answers
10k views

Purpose of “let expression” (LetExpr) in the Java compiler?

The Java compiler seems to have support for let expressions in com.sun.tools.javac.tree.* (look for LetExpr). One comment in JCTree even mentions some syntax (let int x = 3; in x+2) which of ...
59
votes
7answers
2k views

Why does C# allow {} code blocks without a preceding statement?

Why does C# allow code blocks without a preceding statement (e.g. if, else, for, while)? void Main() { { // any sense in this? Console.Write("foo"); } }
50
votes
27answers
10k views

Why aren't variables declared in “try” in scope in “catch” or “finally”?

In C# and in Java (and possibly other languages as well), variables declared in a "try" block are not in scope in the corresponding "catch" or "finally" blocks. For example, the following code does ...
48
votes
5answers
14k views

How does “this” keyword work within a JavaScript object literal?

I just came across an interesting situation in Javascript. I have a class with a method that defines several objects using object-literal notation. Inside those objects, the this pointer is being ...
45
votes
4answers
6k views

Why must the last part of an Objective-C method name take an argument (when there is more than one part)?

In Objective-C, you can't declare method names where the last component doesn't take an argument. For example, the following is illegal. -(void)take:(id)theMoney andRun; -(void)take:(id)yourMedicine ...
43
votes
43answers
4k views

Most interesting non-mainstream language? [closed]

I'm interested in compilers, interpreters and languages. What is the most interesting, but forgotten or unknown, language you know about? And more importantly, why? I'm interested both in compiled, ...
42
votes
7answers
17k views

Why can't I have abstract static methods in C#?

I've been working with providers a fair bit lately, and I came across an interesting situation where I wanted to have an abstract class that had an abstract static method. I read a few posts on the ...
40
votes
5answers
2k views

Why are C# 3.0 object initializer constructor parentheses optional?

It seems that the C# 3.0 object initializer syntax allows one to exclude the open/close pair of parentheses in the constructor when there is a parameterless constructor existing. Example: var x = new ...
39
votes
4answers
1k views

Why is there no base class in C++?

Quick question: from a design point of view, why is that, in C++, there is no mother-of-all base-class, what's usually object in other languages?
39
votes
5answers
1k views

Why is F#'s type inference so fickle?

The F# compiler appears to perform type inference in a (fairly) strict top-to-bottom, left-to-right fashion. This means you must do things like put all definitions before their use, order of file ...
37
votes
9answers
912 views

Why are most string manipulations in Java based on regexp?

In Java there are a bunch of methods that all have to do with manipulating Strings. The simplest example is the String.split("something") method. Now the actual definition of many of those methods is ...
35
votes
10answers
1k views

New language on top of PHP?

I'm a PHP developer. I like PHP! It is a really good language if you know how to use it, but I know it allows very bad design sometimes. It reminds me of JavaScript which has good parts and bad ...
33
votes
2answers
332 views

Datatype promotion for dependently challenged

After reading through the ghc 7.4. pre-release notes and the Giving Haskell a Promotion paper, I'm still confused on what you actually do with promoted types. For example, the GHC manual gives the ...
33
votes
28answers
3k views

does a disaster proof language exist?

When creating system services which must have a high reliability, I often end up writing the a lot of 'failsafe' mechanisms in case of things like: communications which are gone (for instance ...
32
votes
25answers
3k views

What is the purpose of null?

I am in a compilers class and we are tasked with creating our own language, from scratch. Currently our dilemma is whether to include a 'null' type or not. What purpose does null provide? Some of our ...
32
votes
6answers
2k views

implementing type inference

well I see some interesting discussions here about static vs. dynamic typing I generally prefer static typing, due to compile type checking, better documented code,etc. However I do agree that they do ...
31
votes
6answers
7k views

How to Correctly Use Lists in R?

Brief background: Many (most?) modern programming languages in widespread use have at least a handful of ADTs [abstract data type] in common, in particular, string (a (sequence comprised of ...
30
votes
5answers
5k views

Why is an array not assignable to Iterable?

with Java5 we can write: Foo[] foos = ... for (Foo foo : foos) or just using an Iterable in the for loop. This is very handy. However you can't write a generic method for iterable like this: ...
29
votes
2answers
352 views

Why are slices in Python 3 still copies and not views?

As I only now noticed after commenting on this answer, slices in Python 3 return shallow copies of whatever they're slicing rather than views. Why is this still the case? Even leaving aside numpy's ...
29
votes
4answers
1k views

What is the difference between a class and a type in Scala (and Java)?

Scala Where can differences between a class and a type be observed in Scala and why is this distinction important? Is it only a consideration from the language design point-of-view or has it ...
29
votes
13answers
1k views

Suggestions on syntax to express mathematical formula concisely

I am developing functional domain specific embedded language within C++ to translate formulas into working code as concisely and accurately as possible. I posted a prototype in the comments, it is ...
29
votes
4answers
1k views

Why aren't there compiler-generated swap() methods in C++0x?

C++ compilers automatically generate copy constructors and copy-assignment operators. Why not swap too? These days the preferred method for implementing the copy-assignment operator is the ...
29
votes
12answers
16k views

What does DIM stand for in Visual Basic and BASIC?

What does DIM stand for in Visual Basic?
27
votes
5answers
423 views

Where are the readonly/const in .NET?

In C++ you'll see void func(const T& t) everywhere. However, i havent seen anything similar in .NET. Why? I have notice a nice amount of parameters using struct. But i see no functions with ...
27
votes
3answers
1k views

Why is there “data” and “newtype” in Haskell?

To me it seems that a newtype definition is just a data definition that obeys some restrictions (only one constructor and such), and that due to these restrictions the runtime system can handle ...
25
votes
6answers
3k views

What blocks Ruby, Python to get Javascript V8 speed?

Are there any Ruby / Python features that are blocking implementation of optimizations (e.g. inline caching) V8 engine has? Python is co-developed by Google guys so it shouldn't be blocked by ...
25
votes
5answers
837 views

Why aren't C# static class extension methods supported?

I know from this question that extension methods can only operate on class instances, not the static class itself. This means I can't extend useful static classes like Convert and Math. What I want ...
25
votes
22answers
2k views

How can I write like “x == either 1 or 2” in a programming language? [closed]

Possible Duplicate: Why do most programming languages only have binary equality comparison operators? I have had a simple question for a fairly long time--since I started learning ...
25
votes
7answers
495 views

Design Patterns, A New Criterion for Comparing Languages? [closed]

I've been reading through Code Complete, and I just got to the part about Design Patterns. I thought I'd see what questions were popular and tagged design-patterns. I was reading this question, and I ...
25
votes
23answers
1k views

Why do most programming languages only have binary equality comparison operators?

In natural languages, we would say "some color is a primary color if the color is red, blue, or yellow." In every programming language I've seen, that translates into something like: isPrimaryColor ...
25
votes
16answers
4k views

Which programming language makes concurrent programming as easy as possible?

If you want to create programs with threads/processes that run parallel you have to learn about many stuff, like race conditions, locks, semaphors, monitors, deadlocks .... Is there a language that ...
24
votes
13answers
3k views

C++ Iterators Considered Harmful?

At the Boost library conference today, Andrei Alexandrescu author of the book Modern C++ Design and the Loki C++ library, spoke about why iterators are bad, and he had a better solution. I tried to ...
22
votes
5answers
585 views

Performance of “direct” virtual call vs. interface call in C#

This benchmark appears to show that calling a virtual method directly on object reference is faster than calling it on the reference to the interface this object implements. In other words: ...
22
votes
2answers
392 views

C# Language Design: method group inside `is` operator

I'm interesting in some design choices of C# language. There is a rule in C# spec that allows to use method groups as the expressions of is operator: class Foo { static void Main() { if (Main is ...
21
votes
4answers
777 views

Why does Python's itertools.permutations contain duplicates? (When the original list has duplicates)

It is universally agreed that a list of n distinct symbols has n! permutations. However, when the symbols are not distinct, the most common convention, in mathematics and elsewhere, seems to be to ...
21
votes
2answers
540 views

How has Scala solved the problems which Java's closures currently have?

Some time ago Oracle decided that adding Closures to Java 8 would be an good idea. I wonder how design problems are solved there in comparison to Scala, which had closures since day one. Citing the ...
21
votes
8answers
2k views

Why there is no multiple inheritance in Java, but implementing multiple interfaces is allowed

Java doesn't allow multiple inheritance but it allows implementing multiple interfaces. Why?
21
votes
10answers
1k views

Are design patterns really language weaknesses?

Should today's patterns be seen as defects or missing features in Java and C++? Subroutine was a design pattern for machine language in the 50s and 60s. Object-Oriented Class was a design pattern ...
21
votes
9answers
6k views

Why is Multiple Inheritance not allowed in Java or C#?

I know that multiple inheritance is not allowed in Java and C#. Many books just say, multiple inheritance is not allowed. But it can be implemented by using interfaces. Nothing is discussed about why ...
21
votes
15answers
2k views

Does C# have too many language features?

This is a discussion that pops a from time to time in our team. While a few quickly learned C# 3.0 features, other stick with classical techniques. Some never use Linq, think that lambda expressions ...
21
votes
13answers
8k views

Elegant ways to return multiple values from a function

It seems like in most mainstream programming languages, returning multiple values from a function is an extremely awkward thing. The typical solutions are to make either a struct or a plain old data ...
20
votes
5answers
348 views

Why does the local variable of an enhanced for loop have to be local?

According to the Java Language Specification, ยง 14.14.2, the variable of an enhanced for loop must be local to the loop. In other words, this compiles: for (State state : State.values()) { // do ...
20
votes
4answers
885 views

Why did Scala's library double its size between 2.7 and 2.8?

Comparing Scala 2.7.7 (last 2.7.x release) with Scala 2.8.1 (latest 2.8.x release) I gathered the following metrics: Scala version | 2.7.7 2.8.1 ...
20
votes
5answers
898 views

Complexity of Java 7's current Lambda proposal? (August 2010)

Some people say that every programming language has its "complexity budget" which it can use to accomplish its purpose. But if the complexity budget is depleted, every minor change becomes ...

1 2 3 4 5 15