vote up 14 vote down star
3

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 at 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 ()

flag

84 Answers

prev 1 2 3
vote up 0 vote down

Subqueries in SQL

link|flag
vote up 0 vote down

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

Abstract: recursion (once I 'got' it)

link|flag
vote up 0 vote down

HTTP(s) support

link|flag
vote up 0 vote down

command line compiles

link|flag
vote up 0 vote down

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

Kind of goes with garbage collection, but more specific.

link|flag
vote up 0 vote down

Locking for thread safety

link|flag
vote up 0 vote down

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|flag
vote up 0 vote down

For in statement for object inspection.

link|flag
vote up 0 vote down

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

link|flag
vote up 0 vote down

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

link|flag
vote up 0 vote down

Good collection classes.

link|flag
vote up 0 vote down

.NET Generics

link|flag
vote up 0 vote down

first class functions and lexical scope!

link|flag
vote up 0 vote down

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

link|flag
vote up 0 vote down

Static type inferencing.

link|flag
vote up 0 vote down

The lower half of the right brace }

link|flag
vote up 0 vote down

Assignment ;-)

link|flag
vote up 0 vote down

Closures.

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

link|flag
vote up 0 vote down

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|flag
vote up 0 vote down

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|flag
vote up 0 vote down

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

link|flag
vote up 0 vote down

Generics and LINQ

link|flag
vote up 0 vote down

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|flag
vote up 0 vote down

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

link|flag
prev 1 2 3

Your Answer

Get an OpenID
or

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