Implementing the project skeleton

Figure 577. Generating Javadoc. Slide presentation
  • HTML is difficult to read:

       *     <td><code>a = -3</code>, <code>b = 4</code>, <code>c = 3</code></td>
       *     <td>4 - (-3) = 7</td>
       *   </tr>
       * </table>
       ...
       */
      static public int getMaxAbsoluteDiff(int a, int b, int c) {
        return 42;  // TODO: Implement me correctly
  • ⇒ Generate Javadoc by CLI or Idea.


Figure 578. Programming hints Slide presentation

Figure 579. The implement - test - implement cycle Slide presentation