Java compiler errors
As with any regular Java program, there may be compile-time errors in your coding. Jupyter Java provides similar feedback, with line numbers corresponding to the lines in your Notebook.
For example, when I first entered the snippet for an example that we will look at a little later on in this chapter, there were a couple of errors:
The first error was attempting to call the sort
function from a static
method. The second error was attempting to use the wrong function name. Both of these errors are typical types of compile errors you may see when developing Java applications.