up vote 24 down vote favorite
9
share [g+] share [fb]

I always miss python's built-in doc strings when working in other languages. I know this may seem odd, but it allows me to cut down significantly on excess comments while still providing a clean description of my code and any interfaces therein.

  • What Language Feature Can You Just Not Live Without?

If someone were building a new language and they asked you what one feature they absolutely must include, what would it be?

This is getting kind of long, so I figured I'd do my best to summarize:

Paraphrased to be language agnostic. If you know of a language which uses something mentioned, please add it in the parenthesis to the right of the feature. And if you have a better format for this list, by all means try it out (if it doesn't seem to work, I'll just roll back).

Regular Expressions ~ torial (Perl)

Garbage Collection ~ SaaS Developer (Python, Perl, Ruby, Java, .NET)

Anonymous Functions ~ Vinko Vrsalovic (Lisp, Python)

Arithmetic Operators ~ Jeremy Ross (Python, Perl, Ruby, Java, C#, Visual Basic, C, C++, Pascal, Smalltalk, etc.)

Exception Handling ~ torial (Python, Java, .NET)

Pass By Reference ~ Chris (Python)

Unified String Format WalloWizard (C#)

Generics ~ torial (Python, Java, C#)

Integrated Query Equivalent to LINQ ~ Vyrotek (C#)

Namespacing ~ Garry Shutler ()

Short Circuit Logic ~ Adam Bellaire ()

link|improve this question
feedback

97 Answers

Any language should support some way of creating abstractions and allow tasks decomposition.

link|improve this answer
show 4 more comments
feedback

Symbolic names.

link|improve this answer
feedback

Subqueries in SQL

link|improve this answer
feedback

Solid: the iterator ++ -- etc...

Abstract: recursion (once I 'got' it)

link|improve this answer
feedback

HTTP(s) support

link|improve this answer
feedback

command line compiles

link|improve this answer
feedback

In C#, the Using () {....} blocks have solved more memory leaks than I can count.

Kind of goes with garbage collection, but more specific.

link|improve this answer
feedback

Locking for thread safety

link|improve this answer
feedback

Attributes in .NET. Once you really understand them and learn how to use them properly (that is, not to overuse them), it opens up a whole new world (now I'm exaggerating a bit).

link|improve this answer
feedback

For in statement for object inspection.

link|improve this answer
feedback

Tables. Those save me a lot of the headache I had with plain arrays.

link|improve this answer
feedback

pointer to methods (C++)
well, maybe I could have lived without it but its neat non the less.

link|improve this answer
feedback

Good collection classes.

link|improve this answer
feedback

.NET Generics

link|improve this answer
feedback

first class functions and lexical scope!

link|improve this answer
feedback

Operator overloading (Python-style, a la str())

link|improve this answer
feedback

The lower half of the right brace }

link|improve this answer
feedback

Assignment ;-)

link|improve this answer
feedback

Closures.

(First-class functions in general, but those are implied.)

link|improve this answer
feedback

Delimited continuations. When you can express the future of the computation as a series of composable partial evaluation control structures nested within one another like Russian dolls, going back to iteration seems so mundane. ;)

Granted, when your standards are this high, it severely limits your available programming languages.

link|improve this answer
feedback

A full list would comprise the API documentation for a small programming language. I'm also seeing things here that would be a poor fit for certain applications, so I'm trying to list things that aren't ubiquitous, but probably should be.

First-class functions, preferably with a good function literal syntax. Ruby is good here. Arc and Clojure are great. (Missing from Java, PHP and only available in a roundabout way in C and C++. I think C# has some form of this with LINQ.)

Namespaces, packages or some similar way to control what names are visible where. (Missing from Emacs Lisp and, until recently, PHP.)

Pretty much everything else I can't live without is ubiquitous in modern general-purpose languages. A discussion of what features you can live without might be just as interesting, and probably more controversial.

link|improve this answer
feedback

LinkedHashMap. Use them once and you will love them forever.

link|improve this answer
feedback

Generics and LINQ

link|improve this answer
feedback

meta-programming features: -runtime class and methods definition (ruby) -method_missing , being able to catch all calls to non-defined method and act with a custom logic (eg: ActiveRecord dynamic finders)

link|improve this answer
feedback

Without a doubt, the one feature that I just can not live without is variables.

link|improve this answer
feedback

I require sensible rules for the declaration of variables. This specifically excludes old time Fortran, with the I-N (?) implicit integer rule. I hated that so much that there is a tumor in my brain at the location of the memory. Well, back to the current century...

The "sensible rules" feature has several components, so I can mention several things, right? A language must have declaration scoping - the ability to keep variable names local to a block of code. Even assembler languages must have local code labels (branch points); The language must be able to flag (or deny) implicit declarations, and detect the use of a variable before initialization.

link|improve this answer
feedback

Destructors

[extra characters to exceed limit 15]

link|improve this answer
feedback

var keyword in c#

link|improve this answer
feedback

I can live without just about anything. Starve me of anonymous functions, make me manage memory without even malloc/free, omit arithmetic or Booleans - fine, if there is some point to the restriction. Absence of both iteration, backwards branches, and recursion: yes, that too.

One thing, though: I think I do want something corresponding to conditionals, be it an if test facility, or lambda-calculus-like true and false combinators, or sh-like &&s and ||s on exit status. Without that, well, it's not really programming, is it.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.