Slashdot Mirror


Favorite Programming Language Features?

johnnyb asks: "I'm curious what everyone's favorite programming language features are. I'm looking for both the general and the specific. I'm especially looking for features that few people know about or use, but are really useful for those who do know about them. What are your favorite programming language features?" "A couple of examples to kick off the conversation:
  • Continuations

    Continuations are very interesting, because they can be used to implement a number of flow-control features such as exceptions, coroutines, cooperative multithreading, and are better at modelling web interactions. This is a more general feature, but most people use these in conjunction with either scheme or ML.

  • Tuple-returning

    It is a huuuuge time-saver when languages like Perl allow functions to return tuples. Instructions like '($a, $b, $c) = $sth->fetchrow_array()' is a wonderful thing.

  • The flip-flop operator [Perl's '..' operator]

    Another perlism that I just think is cool. Read more about it here.

Okay, on to yours!"

22 of 312 comments (clear)

  1. Many by Apreche · · Score: 4, Interesting
    First off I like nothing more than automatic memory management. Being able to forget about pointers and malloc and all that garbage makes programming infinitely easier and faster. I only write in C or assembly when I really really need the speed or when I'm at such a low level that nothing else is possible.

    Next I love ruby's block system, especially for stuff like this.
    myarray.each { |e| puts e }
    It comes in super handy for a ton of stuff. Especially when I'm doing XML.

    Also, there is another thing that I first discovered in python
    x, y = y, x
    Save me a temporary variable, w00t.

    Lastly, its not really a language feature, but in any object oriented language I love being able to serialize the objects. It's so simple to use pickle or any other serialization library and just write objects out to file or network. I never have to design a binary file format ever again. It's even better when you use Ruby and you can marshall objects into XML or YAML with a single method. Then you've got a human readable and editable file format that you can magically transform into objects again later. Super useful.
    --
    The GeekNights podcast is going strong. Listen!
  2. Dreamed-of feature by Dr.+Weird · · Score: 5, Interesting

    This is less of a favorite feature, and more of a feature I wish we had. What about having the representation of the language independent of the code itself? I think this will eventually happen and could really revolutionize things. I believe the inklings of separating 'physical' representation from the code were there in some languages like Algol 60 and CS work in the 1960's, but it never caught on (perhaps hindered by other features of those works?).

    In a little more detail, suppose I write a C program. It will have lots of functions and conditionals with their "blocks" surrounded by braces.

    But what if I prefer my "blocks" to be started and ended by brackets instead of braces. Better yet, what if I am tired of typing these and would like indentation to control this. Or whatever -- start end commands, if you like. The point is that these are minor sytactic idiosyncracies, and we all have preferences. Why not store the code in an underlying format (XML would be okay, were it not for the bulk of it)? As long as there is a one-to-one correspondence between all possible representations, you could view it however you want.

    And so on for all syntactic features. Prefer "if-fi" construction to "if () {}"? Or "if ... then ..."? Better yet, really like Perl's "$_"? If you want it to be displayed like this, turn it on. Otherwise, say you don't like this feature, and it will automatically replace the "$_"'s (either implicit or explicit) with the variable to which it refers. Again, no problem.

    At this point, I feel like I am repeating myself, but let me continue for a little bit. It would let each user have his/her personal favorite representation. We already let them control the colors of their syntax highlighting, lets take it a step further.

    Hell, if you want to use a graphical viewer for those C programs, akin to LabView, go for it! Or (in my opinion) a much better graphical programming environment with a graph structure. The point is: you write it how you want and save it. It appears to another coder how he/she wants it to appear, but the content is exactly the same.

    In short: why isn't this done? It seems like a spectacular step in unifying programming languages a bit, and letting each user tailor his preferences while maintaining compatibility. As long as there was simple one-to-one correspondence, the translation from physical representation to underlying code and back would be quick and fairly easy to handle. Are there any modern projects which attempt this? Or *any* which attempt it with some success?

    On a somewhat related note, is it possible to put a "hook" to a comment in the code, and with the proper viewer have that comment displayed along with the code (say when you click the "hook", move your mouse over it, or drag the "hook" to a "comment box")? If this last paragraph doesn't make sense, please ignore it.

    1. Re:Dreamed-of feature by Dr.+Weird · · Score: 2, Interesting
      Imagine trying to read the code for a given app that had all sorts of bizarre preferences chosen. You would have to spend a lot of time just understanding what the hell you were looking at.

      No. In some sense, this is precisely the problem I try to avoid. The bizarre preferences were chosen because that programmer/company/standards bureau liked them and/or found them useful (hopefully). By storing the content of the program, and not their silly display preferences, it would load and present to me however I had it set up to display it, not according to their preferences.

      In other words, they have some silly COBOL-like syntax mixed up with graphical elements. But the presentation is not in the code . When I load the file, it would display according to my preferences, perhaps looking very C-like.

      I am not suggesting that the options/commands be different for each user, but rather that the presentation be different. In other words, this is the way to make there be least to learn on behalf of programmers. They don't need to know the other programmers' formatting rules, syntax, blocking options, etc. By having a 1-1 correspondence between representations, a representation suitable for you would be generated automatically.

    2. Re:Dreamed-of feature by gurps_npc · · Score: 2, Interesting
      I agree. But more so.

      We use graphical interfaces for a lot of things, we should use them for programming.

      SCREW the text editor based programming.

      What is this bracket crap to seperate codes?

      You want to seperate code? draw a circle around it. Variables that are in the circle can be accesed by code in the circle. Want to reference a variable outside the circle? Draw a line from it into the circle. And guess what - you can tell from the color of the variable name that it is not from that same object.

      I am trying to design such a language, but realize it is a big project. In fact it is two projects: 1) Designing the language (mostly done) and 2) Writing an open source graphical editor/compiler program that will allow you to write/code the program, save it, edit it, debug, and compile.

      reply to this post if you want more information

      --
      excitingthingstodo.blogspot.com
  3. Stupid Lexical Scoping Tricks by Breakerofthings · · Score: 2, Interesting

    Closures and Currying are two of my personal favorites.

    Overloaded Functions are sweet.

    I am also quite fond of operator overloading.

  4. C pointers and arrays by Quill_28 · · Score: 3, Interesting

    Just to confuse people do this:

    main() {

    int x;
    int y[2];

    x=1;
    y[1]=10;

    printf("%d\n", y[x]);
    printf("%d\n", x[y]);
    }

    What will happen?

    1. Re:C pointers and arrays by Quill_28 · · Score: 3, Interesting

      You are correct. Thee compiler just sees memory.
      The x could also be a double.

      double x; won't change a thing

      One another interesting thing:

      the x[y] line compiled into assembly(using gcc non-optimized) will use less lines of code than y[x]

      Optimized they use the same.

      Learning this stuff actually gave me a much better understanding of pointers and arrays and their relationship in c.

  5. Several: by twem2 · · Score: 3, Interesting

    Functions as first class citizens, that is functions can be returned from functions and provided as arguments as functions. The basis of the functional paradigm and it makes life much much simpler.
    Pattern matching (some ML:)

    fun has_a [] = false
    | has_a 'a'::_ = true
    | has_a _::xs = has_a xs;

    Simple elegent functions requireing much less if_then_else's.

    Automatic garbage collection and bounds checking: enables me to write the code to do the job, not the memory management.

    Polymorphic typing: I can write general functions:

    fun contains x [] = false
    | contains x x::_ = true
    | contains x _::xs = contains xs;

    That will work with any type for which equality is defined.

    These are the reasons I hate C for general programming. The most important thing is efficient algorithms, without them no amount of low level optimization will help. With good algorithms, functional languages are now normally at least as fast... (and much much easier to debug and even verifiable).

    From non-functional languages, the object model is wonderful when used properly.
    Smalltalk & co's complete environment is a nice feature.

    I also have a soft spot for BBC BASIC with its speed, interactivity and simplicity. These are combined to allow windowed applications including at least one web browser and anyone can start programming simple programs (which is missing from most modern computers)

    Then there's the specialist languages. They have all sorts of nifty features (Mathematica is a good example) but I wouldn't expect them in an everyday language.

  6. Two words: string handling by Fished · · Score: 4, Interesting

    This is not the issue it was ten years ago, but one feature I absolutely want tightly integrated into my language is robust string handling. I still like perl's best (although perhaps only because I know it best). It simply seems to be more tightly integrated into the language as a whole.

    --
    "He who would learn astronomy, and other recondite arts, let him go elsewhere. " -- John Calvin, commenting on Genesis 1
  7. Simplicity, macros, conditions, multiple dispatch by Wolfkin · · Score: 2, Interesting

    I use Common Lisp.

    Lisp has almost no syntax, so it's extremely regular (barring exceptions like LOOP). Because it's so regular, it's easy to build macros that do powerful things.

    Macros can completely transform the source, at compile time, but with the full power of the language. Having that ability, together with simplicity, means that it's easy to build a complete mini-language for one's manager or web designer to use on the site, and easy for them to learn it, since you can explain the syntax in 5 minutes or less, and they don't have to learn 50 built-ins to use it.

    Common Lisp's conditions system not only allows exception-handling, like Python, but can also have an entire protocol for controlling execution flow built on it. More about that in the conditions chapter of Peter Seibel's forthcoming book.

    Lastly, having a generic-function-based object system means that a method can "belong" simultaneously to more than one class, at the same time. So, instead of having a method inside a class, you call a method with any number of objects of various classes, and it figures out from the type of the object what method to run, of all the similarly named methods. You can even specialize a method on a particular object or objects, instead of a particular class or classes! Multiple dispatch rocks.

    --
    Property law should use #'EQ, not #'EQUAL.
  8. Perl's taint mode by babbage · · Score: 4, Interesting
    In the current issue of ACM Queue, Marcus Ranum makes an interesting case for Perl's taint mode in his article Security: The root of the problem -- Why is it we can't seem to produce secure, high-quality code?:
    Right now, the state of the art in software security is to pass your code through some kind of static source-code analyzer such as ITS4 or Fortify that looks for dangerous practices and known bugs. That's a great start, and, according to my friend Gary McGraw--chief technology officer of Cigital and author of several books on software security--who works with the stuff, it catches a significant number of potential security problems. But, as you can see, the compiler already knows a lot of what it needs to in order to make a good stab at determining what is being done wrong.

    One really neat concept is embodied in the Perl programming language--tainting. The idea of tainting is that the interpreter tracks the source of data and turns off dangerous operations if they are called directly as a result of user input. For example, when you're running a Perl script in taint mode, it turns on a lot of error checking before passing user-provided data to certain system calls. When you try to open a file for write using a filename that is tainted data, it checks to make sure the directory tree ownerships for the target directory are correct and that the filename doesn't contain "../" path expansions. In other words, the runtime environment tracks not just the type and value of the data but also its origin. You can imagine how nice this capability can be for writing server-side code or captive applications.

    Unfortunately, few programmers use tainting because it imposes an extra burden on the programmer, and it's sometimes difficult to figure out a secure way to get the job done. But what if we built tainting-type capabilities right into our runtime environments for C/C++? A simple high-value approach might be to modify I/O routines (read/write) to determine if they are connected to a socket from a remote system, and to do some basic checks on data coming across it, such as checking to see if the stack is altered across calls to certain functions following I/O.

    Ranum is citing this as an example of a way that existing tools -- such as GCC -- could be enhanced in such a way that programmers using currently popular languages (C/C++) would have a better security safety net without having to be retrained in practices (like checking for buffer overflows) that while obvious are still under-utilized in most software. The whole article is interesting reading, but this remark about Perl's taint mode seems like one of the best concrete examples of a modern protective language feature.

  9. True 64-bit Environment w/ Strong Primitive Typing by mosel-saar-ruwer · · Score: 2, Interesting

    This is what I want:
    1) An honest-to-goodness, floor-to-ceiling, cradle-to-grave, first-to-last, night-n-day 64-bit environment, with

    2) Strongly-typed data primitives.

    For the first criteria, if, at any point, you are forced to make contact with a 32-bit environment, then the platform fails the test.

    For instance, if the platform requires you to use either Java or SQL, then it fails.

    SQL fails because it is essentially an ASCII-based language that has almost no sense of primitive data types whatsoever, and its only undefined binary type, the binary BLOB, maxes out at 2^32 = 4 Billion bytes [so much for high-quality MPEGs of, e.g., Gone With The Wind].

    Java fails because, as recently as the Java 1.5.x Beta, it cannot take long ints as array indices. For instance, the following will not even "compile" [i.e. "javac," whatever that is] under the Java 1.5.x Beta:

    public class SixtyFourBit
    {
    public static void main (String args[])
    {
    long theLong = 1;
    theLong theLong += 1;
    System.out.println("theLong = " + theLong);

    double [] theDoubleArray = new double[theLong];
    }
    }

    So your "middleware" for this hypothetical 64-bit platform is forbidden to touch either SQL or Java.

    As for the strong data typing, I want the environment to be natively aware of

    A) IEEE 96-bit Extended Doubles
    B) IEEE 128-bit Extended Doubles
    C) [Bonus for Extra Credit] LabVIEW 128-bit TIMESTAMPs
    According to Professor Kahan, Matlab has [or has had] some serious problems here:
    http://www.cs.berkeley.edu/~wkahan/MxMulEps.pdf
    PDF DOCUMENT
    So: Any takers?
  10. unification as in prolog by egott · · Score: 2, Interesting

    Languages without "real" unification feel unexpressive or too low level. Whenever I program in something other than prolog (which is most of the time) I miss it.

    Example: [foo(A,x)|B] = [foo([p,q],x),C,d,e].
    which implies that A = [p,q], B = [C,d,e], and C remains unconstrained.

    --
    There are 10 kinds of people: Those that understand ternary; those that don't; and those that don't care.
  11. You can simulate it in perl by bill_mcgonigle · · Score: 2, Interesting

    You could do this in perl if you wanted to. For instance, you can code perl in Latin. It's done using the Filter::Util::Call module, which lets you preprocess your perl code. Read Damian Conway's discussion about it. He gives a simple example using Klingon keywords and talks about implementing a Switch function in perl.

    --
    My God, it's Full of Source!
    OUTSIDE_IP=$(dig +short my.ip @outsideip.net)
  12. Re:Generic programming by tchuladdiass · · Score: 2, Interesting

    One thing I've always wondered (since I mostly do C and not much into C++), how is this different than something like pointers to void in C? For example, the way qsort() works -- it can operate on any data type also.

  13. reflection by agwis · · Score: 2, Interesting

    I'm surprised I haven't seen this listed yet. In java I use reflection often and at the cost of a little processing overhead, it allows me to add remove fields from a database with very little code change.

    I generally like to use struts in web applications and find I often have to tranfer values from an action form to a java bean and vice versa. Using the org.apache.commons.beanutils package it is incredibly easy to do this, and beanutils uses reflection to do this with.

    My second choice would be good regexp support. IMO, Perl is the best at this and I also like the Java regexp package in 1.4 as well.

  14. #1 Garbage collection by Simon · · Score: 2, Interesting

    #1 Garbage collection. a.k.a. automatic memory management. Not very sexy, but by far the single biggest productivity boosting feature of any language. I hate housework. It is just a waste of time.

    #2 No pointers, no buffer overruns, no memory corruption. Related to the first point. Memory corruption is just so hard track down. You can keep your pointers, I've already got an OS, I don't need to write my own. :)

    After spending years programing asm and C on a platform with no memory protection (Amiga), and then later C++, I think I've paid my dues here.

    #3 Stack traces. Not a language feature per se, but it takes a lot of the drudge work out of debugging.

    #4 Python's 'for' loop for iterating over the contents of a list or array:

    for thing in myarray:
    mutate(thing)

    It is easy to remember, easy to type, much easier to read, and you use it _all_ the time. Compared to the same code in C, C++ or Java, it is a godsend.

    #5 Dictionaries, a.k.a. associative arrays. It just makes a lot of problems much much simplier and faster to solve. Sure, most other languages have dictionaries available as a class, but when they are seamlessly built into the language you use them as easily as any other primitive datatype.

    --
    Simon

  15. Re:Self-execution by turgid · · Score: 2, Interesting

    In the days of 8-bit micros, as games became more advanced, allegedly self-modifying code was used to get enough stuff in the sparse RAM available and for performance reasons when a dynamically-modified unrolled loop was required IIRC.

  16. Pascal and With operator. by rasjani · · Score: 2, Interesting

    I dont remember what the syntax actually was but when you defined a structure, you could point into its members with with.

    like if the structure had members x and y and structure was named coords you could do something like this

    var own_x;
    with coords
    begin
    x=own_x
    y=123.13
    end

    --
    yush
  17. Re:This "ask Slashdot" is a concurrent "cross-post by johnnyb · · Score: 4, Interesting

    Actually what I'm wanting to do, eventually, is write a book about great programming constructs people have probably never heard of, or don't understand well.

    My last book took me 3 years to find the spare time to finish, so I don't suspect I'll have this done anytime soon.

    I was originally going to just analyze scheme's features, but then I realized that many languages have features that need to be recognized, too. my original outline was going to be:

    * Memory Management
    * Symbolic programming - an intro to Scheme
    * Functional Programming & Functional Programming Patterns
    * Closures and higher-order functions
    * Advanced Flow Control w/ Continuations
    * Compile-Time programming 1: Macros
    * Compile-Time programming 2: Partial Evaluation
    * Compile-Time programming 3: C++ templates
    * Lazy evaluation
    * Lazy data structures

    However, if I decide to open it up to other languages, I have no idea how I'm going to organize it or even how I will decide what to include.

    Anyway, it was originally posted just to Advogato, but then I remembered that the only threads on Advogato that get any real response are flame-wars, which is sad because Advogato could be a real cool place. Then I thought "you know, this would make a good 'Ask Slashdot' as well. However, I don't expect the quality of responses on Ask Slashdot to be as good, although I expect there to be a LOT more of them.

  18. A few favorites by scruffy · · Score: 2, Interesting
    Garbage collection

    Unrestricted integer size (e.g., Lisp bignums)

    Have persistent objects between program invocations. It's so tedious and buggy to have to write to a file when a program ends and then read it again when you start it up again.

  19. purposes are more important by bloody_geek · · Score: 2, Interesting

    I don't look at the features alone in a language. Usually, I look at what its primarly used for. I use C because it's a general-purpose language, that has a strong issued standard, with ANSI compiler compliance. I find that beginner programmers who like languages with lots of features(i.e C++), they get carried away and don't learn the language like they should. C++ is an extremely complex language, that is hard to use correctly.