Vishnu Govindan

Results 4 issues of Vishnu Govindan

Hi Esteban, In the BufferedWriter code snippet for chapter 23: try ( BufferedWriter bw = new BufferedWriter( new FileWriter("/file.txt") ) ) { w.newLine("Writing to the file..."); } catch(IOException e) {...

Hi Esteban, In chapter 28 for the RecursiveTask example code, FindMinimumAction firstSubtask = new FindMinimumAction(data, start, mid); FindMinimumAction secondSubtask = new FindMinimumAction(data, mid, end); // queue the first task firstSubtask.fork();...

Hi Esteban, Please find below the following mentioned in Chapter 27: Atomic Classes The java.concurrent.atomic package contains classes to perform atomic operations, which are performed in a single step without...

Hi Esteban, The book has been great so far. One quick confirmation I wanted regarding this comment in the Comparable interface code: // If the objects are equal, compare by...