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

1 2 3 next
vote up 0 vote down

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

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

Generics and LINQ

link|flag
vote up 1 vote down

good documentation

php and python, java

link|flag
vote up 1 vote down

I can't live without introspection anymore...

link|flag
vote up 1 vote down

Good user community!

link|flag
vote up 0 vote down

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

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 1 vote down

Dot.Notation as opposed to arrow->notation, (notation prefix), or function(call(everything))

link|flag
vote up 1 vote down

Argument defaults a la Python and PHP

>>>def foo(bar='baz',qux='42'):
...  print bar + ' ' + qux

>>>foo('hello')
'hello 42'
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

Closures.

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

link|flag
vote up 0 vote down

Assignment ;-)

link|flag
vote up 1 vote down

Introspection combined with running interactively to try out things live. (Python, Perl, Ruby and others I'm sure)

link|flag
vote up 0 vote down

The lower half of the right brace }

link|flag
vote up 2 vote down

LINQ to XML. Seriously :)

With the incredible proliferation of XML used across business problem domains, LINQ to XML can generally turn hundreds of lines of terrible, unmaintainable code into a 10-line query.

link|flag
vote up 1 vote down

Properties

link|flag
vote up 0 vote down

Static type inferencing.

link|flag
vote up 0 vote down

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

link|flag
vote up 0 vote down

first class functions and lexical scope!

link|flag
vote up 0 vote down

.NET Generics

link|flag
vote up 1 vote down

Got to say reflection. It really empowers you to do great stuff in statically typed languages.

link|flag
vote up 0 vote down

Good collection classes.

link|flag
vote up 1 vote down

Extension method of C#

link|flag
vote up 1 vote down

operator overloading

link|flag
vote up 3 vote down

Multi-dimensional Arrays.

link|flag
vote up 5 vote down

Object-orientation! I can't believe nobody seems to have said this!

link|flag
show 1 more comment
vote up 1 vote down

Scoped Guards (for RAII.)

Sorry, C# - other than that, I think you're swell.

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

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

link|flag
1 2 3 next

Your Answer

Get an OpenID
or

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