vote up 5 vote down star
1

There are some gadgets/features for programming languages that I like a lot because they save a lot of coding or simply because they are magical or nice.

Some of my favorites are:

  • C++ increment/decrement operator: my_array[++c];
  • C++ assign and sum or substract (...): a += b
  • C# yield return: yield return 1;
  • C# foreach: foreach (MyClass x in MyCollection)
  • PLSQL for loop: for c in (select col1, col2 from mytable)
  • PLSQL pipe row: for i in 1..x loop pipe row(i); end loop;
  • Python Array access operator: a[:1]
  • PLSQL ref cursors.

Which are yours?

flag

32 Answers

1 2 next
vote up 1 vote down

Perl is full of neat "gadgets" but some I like are the //, s//, <=> and <> operators - that last one particularly for the way it magically either reads from files listed on the commandline or from standard input, the others just because they are concise and useful.

Ada has a few nice features that would be nice to have in other languages, such as rendesvous and protected types.

Other favourites which are in various languages are foreach and the ternary (?:) operator, although you have to be careful not to make a mess with it by trying to cram too much into one line.

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

Haskell's currying is pretty fancy.

link|flag
vote up 6 vote down
  • python generators and list comprehensions
  • haskell type unification and type variables
  • jquery chaining with add, andSelf, etc
link|flag
show 1 more comment
vote up 1 vote down

I <3 javascript's "with" and best closure implementation in any language

Also feeling the "x?y:z" operator and C#'s "a??b"

link|flag
show 2 more comments
vote up 11 vote down

C#:

  • Lambda expressions
  • Null coalescing operator (??)
  • Query expressions
  • Iterator blocks, as mentioned in the question
  • Object and collection initializers
  • Extension methods
  • Automatically implemented properties (although I want readonly ones)
link|flag
show 2 more comments
vote up 9 vote down

I'll second the Python array accessors, and complement it with the List Comprehensions:

[x*x for x in range(10)]

and list unpacking:

(a,b) = (b,a)
link|flag
vote up 5 vote down

Groovy:

  • Null-safe dereferencing (?.)
link|flag
vote up 1 vote down

Some very nice suggestions already, not exactly a language feature but one tool i use a lot within PHP is strtotime(), pretty handy to be able to just say "tomorrow", "next friday" or "+1 day 20 sec" and get unixtime as a result.

link|flag
vote up 3 vote down

Objective-C

@property

Saves a lot of typing for simple setters and getters and are easily overwritten.

link|flag
vote up 4 vote down
  • Method chaining
  • C# anonymous delegates for predicate list control
  • C# accessors
  • PHP arrays
  • ECMAScript for XML!!
link|flag
vote up 3 vote down

JavaScript;

.

Logical Operators: || and &&

var iWantTheTruth = truthyValue || falsyValue;

.

Closures:

Inner functions having access to the variables of their outer functions (even after the outer functions have returned!)

.

The array-like arguments object:

var add = function () {
    var sum = 0;
    for (var ic = 0; ic < arguments.length; ic += 1) {
        sum += parseInt(arguments[ic], 10);
    }
    return sum;
};
var total = add(1,5,2,6,3,4,3); //I can pass how many parameters i want

.

Functions as first-class objects :

var invoker = function (fnc) {
    if (typeof fnc === 'function') {
        fnc('my parameters');
    }
};

invoker(function (p) {
    alert('first parameter passed is : ' + p);
});
link|flag
show 1 more comment
vote up 2 vote down

Haskell's list comprehensions are my personal favorites.

[ x | x <- y, x > z]

Python has very similar constructs, but Haskell's are more compact. Haskell also allows multiple generators in the same comprehension, something which afaik is not possible in Python.

Lazy evaluation in Haskell is another amazing tool (if you can get your head around it). It makes implementing dynamic programming techniques much more straightforwards.

edit- Thinking back, another of my favorites is C's ternary operator:

result = condition ? true_statement : false_statement;

Again, python also has it in the form of the x if y else z construct, but I still prefer C's layout.

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

Clotures and lambdas in c#. I dunno what this smells like to other people, but to me it smells like win:

public void AMethodThatNormallyWouldRequireStoringStateInTheObjectScope()
{
  var victim = AnObjectLol();
  object result = null;

  victim.AnEventSignifyingWorkIsDone += (o,e) =>  result = e.Result;

  victim.AMethodThatFiresAnEventWhenDone(); // blocks until after the event fires

  SomeOtherMethod(result);
}

If you're not careful you can leak memory doing this. However, you can use this technique to avoid having to store result at the object level, which I think is a definite code smell...

link|flag
vote up 1 vote down

I suppose it's controversial, but if you know how to use it, the preprocessor can be your automatic programmer. For example:

link|flag
vote up 1 vote down

perl (foreach $x in @array) type of loop.

plus the sort that you can add in the foreach, i just can't believe how easy is it to sort using perl :) foreach (sort $x in @array){}

or to reverse sort foreach (reverse sort $x in array)

or even to sort by case insensitive manner: foreach (sort {lc $a cmp lc $b $x} in @array){}

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

I love lot of Lua's syntax sugar:

print"Foo" instead of print("Foo"); doStuff{ a, b } instead of doStuff({ a, b }) allowing syntax tricks like:

defineSomething
{
  stuff = 1
}

► The classical but always appreciated a, b = b, a and s, x, y = getResult(z)

And lot more.

► In Java, the new for iterator is nice. The flexibility of enum is good too.

link|flag
vote up 2 vote down

Java:

anonymous subclasses with instance initializer blocks:

Set<String> prefilledStringSet = new HashSet<String>() {{
    put("foo");
    put("bar");
    put("baz");
}};

combined with dynamic proxies to create little DSLs like jMock, so you can program your mocks using real method calls with an obvious syntax:

testObjectContext.checking(new Expectations(){{
    one(testObject).callTestMethod("hello"); will(returnValue("world"));
}});
link|flag
vote up 1 vote down

C++

instead of throwing only character string literals on errors, a way to put lot more information in an exception


class ContainerFault {
public:
  virtual ~ContainerFault();
  virtual const char *what() const = 0;
};

class MyUnderflow : public std::runtime_error, public ContainerFault {
public:
  explicit MyUnderflow( const char *msg = "stack error (over/underflow)" ) : std::runtime_error( msg ) {}
// MyUnderflow( const MyUnderflow & );
// MyUnderflow &operator =( const MyUnderflow & );
  const char *what() const
   { return std::runtime_error::what(); }
};
link|flag
vote up 3 vote down

Perl

The Schwartzian Transform.

This example:

my @sorted_by_length = 
  map  { $_->[0] }
  sort { $a->[1] <=> $b->[1] }
  map  { [ $_, length $_ ] }
       @strings;

maps an list of strings to a list of pairs of string and string length, then sorts the pairs by the second entry of the pair (i.e. the length), then maps the list of pairs back to the strings.

Edit: because the map to array, sort array, then map from array structure, the length function is guaranteed to only execute n times. This on average has a better performance than a single comparator method. /Edit

The trick is to read it backwards.

The bonus cool about it is that it's also known as "Black Magic", Randal Schwartz invented it, and Schwartz is German for black.

link|flag
show 1 more comment
vote up 1 vote down
  1. Datatype? for Nullable datatype in C#
  2. while(++destination=++source) in C
  3. IsNot operator in VB.net
  4. Generics in any language
  5. 5|.times in Ruby
  6. Multicast delegate in .Net
link|flag
vote up 1 vote down

In Java:

  • static imports
    • import static java.lang.System.out; ... out.println(); (not having the System. prefix just feels so much cleaner, and for java.lang.Math static methods too)
  • Generics, wee, let's not get spoiled and try to remember the times when we didn't have them, in those dark days.
link|flag
vote up 1 vote down

Python's compound list comprehensions:

[x * y * z for x in range(3) for y in range(3) for z in range(3) if not (x * y * z) % 2 and x * y * z]

is syntactic sugar for:

lst = []
for x in range(3):
    for y in range(3):
        for z in range(3):
            if x * y * z > 0:
                if x * y * z % 2 == 0:
                    lst.append(x*y*z)
return lst
link|flag
vote up 3 vote down

C++

const & - just brilliant.

C#

delegates - function pointers have never been easier. iterators - continuations can be very useful.

Perl

For quick'n'dirty programming it is really nice that you have sensible default (all the weird $-vars). I also like the fact that if can appear both before and after the statement it governs. This makes output with optional text a lot easier to read.

link|flag
vote up 1 vote down

I love the Lisp style boolean logic, which Python and JavaScript stole.

e.g.

(or abc xyz) ;; Lisp
abc || xyz   // JS/Python

Returns the first value which returns non-nil, rather than a boolean saying that one or the other did. To accomplish the same thing in C(-style languages), you'd need:

abc ? abc : xyz;
link|flag
show 1 more comment
vote up 2 vote down

Common Lisp backtick notation.

link|flag
vote up 0 vote down

Perl:

Variable interpolation.

my $apples = 4;
print "I have $apples apples\n";

It's the little things you miss the most.

link|flag
vote up 0 vote down

Delphi: passing functions as parameters.

Type myFunc = function (Arg1: integer): boolean;

Function aFunction(i: integer):boolean;
begin
// do stuff
end;

Function aCaller(aFunc: myFunc; i: integer);
begin
if aFunc(i) then
 begin
 // do stuff
 end;
end;

begin
aCaller(aFunction, 10);
end.

Rob

link|flag
vote up 0 vote down

QT's

forever {
}
link|flag
show 1 more comment
vote up 1 vote down

C++ pointer to member.

link|flag
vote up 0 vote down

Im going with

  1. C++ templates
  2. Java Generics
  3. C# Generics
  4. Erlang List Comprehension
link|flag
1 2 next

Your Answer

Get an OpenID
or

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