functional or object-oriented?

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • beza1e1

    #1

    functional or object-oriented?

    I see myself shifting more and more over to the functional kind of
    coding. Could be related to the Haskell, we had to learn in CS. Now i
    was wondering, how other people use Python?

    With functional i mean my files mostly consist of functions and only
    rarely i use "class". The library modules seem to be mostly written the
    object-way on the other hand.

    If you use both paradigms. What are your criterias to choose the right
    method for a project?

  • Steve Bergman

    #2
    Re: functional or object-oriented?

    beza1e1 wrote:
    [color=blue]
    >I see myself shifting more and more over to the functional kind of
    >coding. Could be related to the Haskell, we had to learn in CS. Now i
    >was wondering, how other people use Python?
    >
    >With functional i mean my files mostly consist of functions and only
    >rarely i use "class". The library modules seem to be mostly written the
    >object-way on the other hand.
    >
    >If you use both paradigms. What are your criterias to choose the right
    >method for a project?
    >
    >
    >[/color]
    Here is a quote by Alex Martelli from the "Python Cookbook":

    "If the packaging is in terms of objects that typically comprise state
    and behavior, you're using OOP. Some object-oriented languages force
    you to use OOP for everything, so you end up with many object which lack
    either state or behavior. Python, however, supports multiple
    paradigms. While everything in Python is an object, you package things
    as OOP objects only when you want to. Other languages try to force your
    programming style into a predefined mold for your own good, while Python
    empowers you to make and express your own design choices.

    With OOP, once you have specified how an object is composed, you can
    instantiate as many objects of that kind as you need. When you don't
    want to create multiple objects, consider using other Python constructs
    such as modules."


    Comment

    • Diez B. Roggisch

      #3
      Re: functional or object-oriented?

      > With functional i mean my files mostly consist of functions and only[color=blue]
      > rarely i use "class". The library modules seem to be mostly written the
      > object-way on the other hand.[/color]

      Which is not what functional programming is about. The style you
      describe is more often referred to as procedural programming.



      See



      for what functional programming is about.

      Diez

      Comment

      • Bruno Desthuilliers

        #4
        Re: functional or object-oriented?

        beza1e1 a écrit :[color=blue]
        > I see myself shifting more and more over to the functional kind of
        > coding. Could be related to the Haskell, we had to learn in CS. Now i
        > was wondering, how other people use Python?
        >
        > With functional i mean my files mostly consist of functions[/color]

        which is not enough to make it 'functional'.
        [color=blue]
        > and only
        > rarely i use "class". The library modules seem to be mostly written the
        > object-way on the other hand.
        >
        > If you use both paradigms. What are your criterias to choose the right
        > method for a project?
        >[/color]

        Well, I'm most from an OO background, but I think OO and FP have in
        common to try to be as declarative as possible, FP by avoiding
        side-effects and relying on function composition, OO by hiding
        implementation and relying on polymorphic message dispatch. When it
        comes to 'pure' OO languages like Python, there's no real differences
        between classes, objects, functions, methods, attributes etc - they're
        *all* objects. So functional programming in Python is still OO ! When
        you realize that the def statement is nothing more than syntactic sugar
        to instantiate a function object, you can ask yourself if using or not
        using the class statement is really the question.

        Now to answer your question, I don't have 'criterias to choose the right
        method for a project'. I happily mix procedural, OO and FP wherever it
        fits.

        Comment

        • beza1e1

          #5
          Re: functional or object-oriented?

          You are right, this is not the essence of functional programming.

          Functional and procedural python code would look quite the same (at
          least in pydoc). It is the implementation of my functions, wether they
          are functional or procedural. If i use global variables, it is not
          functional any more.

          While python makes it use to work in a functional way, it is nearly
          impossible to do it exclusive. This is not necessary either, of course
          ;)

          Comment

          • beza1e1

            #6
            Re: functional or object-oriented?

            This nails it down, yes. :)

            I probably was too deep into OOP thinking-mode to work pythonic. So i
            am now rediscovering the python way.

            Have you read Paul Grahams On Lisp (or was it one of his essays)? He is
            strongly in favor of functional programming. Mainly because Lisp favors
            it. He does say though, simulations and CAD programs are inherently OO.
            But now i am writing a game modelling engine, i find objects are not
            the best way anytime in these fields either.

            Comment

            • bruno modulix

              #7
              Re: functional or object-oriented?

              beza1e1 wrote:[color=blue]
              > This nails it down, yes. :)
              >
              > I probably was too deep into OOP thinking-mode to work pythonic. So i
              > am now rediscovering the python way.
              >
              > Have you read Paul Grahams On Lisp (or was it one of his essays)? He is
              > strongly in favor of functional programming.[/color]

              Yes, but this does not implies that FP is the main trend in CommonLisp.
              I discussed that point some years ago on c.l.lisp, and it turned out
              that Paul Grahams POV was not perceived by the communauty as
              representative of the most common usage of CommonLisp.
              [color=blue]
              > Mainly because Lisp favors
              > it.[/color]

              While being the father of FPLs, CommonLisp is not a 'pure' FPL, and
              clearly a multiparadigm language. BTW, it's object model is probably one
              of the most astonishing I've seen.
              [color=blue]
              > He does say though, simulations and CAD programs are inherently OO.
              > But now i am writing a game modelling engine, i find objects are not
              > the best way anytime in these fields either.[/color]

              Ok, but keep in mind you're using Python, not Lisp. While supporting
              some FP features (first class functions, nested functions, closures,
              list expressions, generators, and (a very restricted kind of) anonymous
              functions...), Python is still a 'pure' OOPL (ie : everything's an
              object). Not using the *class* statement when there's no use for it
              doesn't mean not using *objects*. One of the pre-requisites for FP is
              first-class functions, and Python provides this by defining functions as
              instances of class function. So even the most FP Python programs are
              still OO, at least under the hood !-)

              My 2 cents
              --
              bruno desthuilliers
              python -c "print '@'.join(['.'.join([w[::-1] for w in p.split('.')]) for
              p in 'onurb@xiludom. gro'.split('@')])"

              Comment

              • Tom Anderson

                #8
                Re: functional or object-oriented?

                On Mon, 19 Sep 2005, beza1e1 wrote:
                [color=blue]
                > I see myself shifting more and more over to the functional kind of
                > coding. Could be related to the Haskell, we had to learn in CS. Now i
                > was wondering, how other people use Python?[/color]

                I'm a lot like you. I grew up with java, and learned to write classical
                object-oriented code. When i came over to python, i very quickly found
                myself writing more procedural, and in fact functional, code.

                I think this is a result of the kind of programs i'm writing. Objects are
                good when you have entities that will live a long and unpredictable life -
                chunks of text in a word processor, for example. If you're writing
                programs with simpler narratives, though, as i often am ("read in this
                data, parse it, transform it like so, shuffle it like this, then write it
                out like this"), a functional approach allows a simpler, cleaner factoring
                of the code.
                [color=blue]
                > With functional i mean my files mostly consist of functions and only
                > rarely i use "class". The library modules seem to be mostly written the
                > object-way on the other hand.[/color]

                The thing about OO code is that the pieces are self-contained, which makes
                this a good way to write library code. That's not a good explanation, but
                i haven't had any coffee this morning, so that's the best i can do right
                now.

                tom

                --
                Science runs with us, making us Gods.

                Comment

                • beza1e1

                  #9
                  Re: functional or object-oriented?

                  I really should take a look at this CLOS, i think ... thanks for the
                  background information.

                  Do you think FP Python is appropriate or just syntactic sugar of a very
                  sophisticated kind? Now i switching back to OO a bit, but the
                  difference between data.value and date['value'] is not really in
                  Pythons dynamic world.

                  Comment

                  Working...