Why do we need to avoid mutations while coding? What is a mutation?

18,263

Solution 1

Mutation is changing an object and is one common side effect in programming languages.

A method that has a functional contract will always return the same value to the same arguments and have no other side effects (like storing file, printing, reading). Thus even if you mutate temporary values inside your function it's still pure from the outside. By putting your first example in a function demonstrates it:

public static int squareSum(const List<Integer> values)
{
    int total = 0;
    for(int e : values) {
        total += e * 2;  // mutates a local variable
    }
    return total;
}

A purely functional method doesn't even update local variables. If you put the second version in a function it would be pure:

public static int squareSum(const List<Integer> values)
{
    return values.stream()
           .map(e-> e*2)
           .reduce(0, (c, e)-> c + e);
}

For a person that knows other languages that has long been preferring a functional style map and reduce with lambda is very natural. Both versions are easy to read and easy to test, which is the most important part.

Java has functional classes. java.lang.String is one of them.

Solution 2

Mutation is changing the state of an object, either the list or some custom object.

Your particular code does not cause a mutation of the list either way, so there's no practical benefit here of using lambdas instead of plain old iteration. And, blame me, but I would use the iteration approach in this case.

Some approaches say that whenever you need to modify an object/collection, you need to return a new object/collection with the modified data instead of changing the original one. This is good for collection for example when you concurrently access a collection and it's being changed from another thread.

Of course this could lead to memory leaks, so there are some algorithms for managing memory and mutability for collection i.e. only the changed nodes are stored in another place in memory.

Solution 3

While Royal Bg is right you're not mutating your data in either case, it's not true that there's no advantage to the second version. The second version can be heavily multithreaded without ambiguity.

Since we're not expecting to iterate the list we can put the operations into a heavily multi-threaded context and solve it on a gpu. In the latter one each data point in the collection is multiplied by 2. Then reduced (which means every element is added together), which can be done by a reduction.

There are a number of potential advantages to the latter code not seen in the former. And while neither code element actually mutates, in the second one we are given the very clear contract that the items cannot mutate while that is happening. So we know that it doesn't matter if we iterate the list forwards, backwards, or apply it multithreaded etc. The implementation details can be filled in later. But, only if we know mutation can't happen and streams simply don't allow them.

Share:
18,263

Related videos on Youtube

codeme
Author by

codeme

Updated on September 15, 2022

Comments

  • codeme
    codeme over 1 year

    Why is the second code (the one with the stream) a better solution than the first?

    First :

    public static void main(String [] args) {
       List<Integer> values = Arrays.asList(1,2,3,4,5,6);
       int total = 0;
       for(int e : values) {
           total += e * 2;
    
       }
    

    Second :

       System.out.println(total);
       System.out.println(
               values.stream()
               .map(e-> e*2)
               .reduce(0, (c, e)-> c + e)); 
    
    • Zelldon
      Zelldon almost 9 years
      For me the first one is more understandable.
    • T.J. Crowder
      T.J. Crowder almost 9 years
      "Why the second part of the code (with the stream) a better solution then the first?" According to whom?
    • Sylwester
      Sylwester almost 9 years
      For a seasoned C++ programmer lambda is new and thus unfamiliar. Of course the first one is easier if you've been programming C++ for a while. You're used to the first gibberish and not the second. If you have been programming some functional languages though the second would be just as easy to read since map and reduce (fold) is home ground.
    • Kelvin
      Kelvin about 7 years
      The "functional" version isn't comparable because you've split the multiplication and addition into separate steps, whereas the "imperative" does both in one step. Also, you use the unclear variable c instead of total. The functional version should've been: values.stream().reduce(0, (total, e)-> total + e*2))
  • I2obiN
    I2obiN over 2 years
    How do you ensure order of operations?