Skip to main content

Section 3.7 Key Concepts

  1. Java program files must have the extension .java.
  2. The root name of a Java program file must match the name of the public class defined in that file.
  3. All Java program files must start with the definition of a public class.
  4. A class can act as the starting point for execution only if it has implemented a method with the signature public static void main(String[] args).
  5. The javac terminal command is used to compile a Java program by passing it the name of a Java source code file.
  6. The java terminal command is used to launch compiled Java programs by passing it the name of a compile class that implements a public static void main(String[] args) method.
  7. Both javac and java commands are provided with the JDK.
  8. Other methods may be defined in a class that encapsulate and execute an arbitrary number of Java statements.
  9. Naming a method with the concept that it implements and defining it to take necessary parameters to perform its computation is a good example of abstraction in object oriented programming.
  10. Java rarely needs whitespace to be used when writing source code. Nevertheless, you should use whitespace to format your source code so that it is easy to understand. This is an obligation of all programmers.
  11. All new objects may be instantiated in Java by invoking its constructor using the new keyword.
  12. In spite of its literal notation, String is a class that may be instantiated using its constructor and the new keyword.
  13. An object’s encapsulated behavior is accessed by adding the dot-operator (.) after an object, a field or method name, and parentheses with optional comma-separated parameter values.
  14. String objects have many methods that you may invoke to operate on a String's internal data.
  15. String objects are immutable. All modifications to a String object’s internal data results in the creation of a new String object.
  16. The Scanner class is a utility that is provided by Java in its Core Library for reading data from an input stream like a file or the terminal. The input stream to read is specified as an argument to the Scanner constructor.
  17. The Scanner class is installed with the Java Core Library.
  18. The Scanner class is not available by default. You must import it first from the Core Library by adding the following command to the top of your Java program file: import java.util.Scanner;.
  19. The Scanner class has many useful methods for testing if there is input waiting to be read from its input stream and for reading and parsing input tokens to produce a desired data type.
  20. Remember to invoke the Scanner object’s .close() method when done using it to avoid resource leakage.
  21. The Scanner is very useful for making your programs more generally useful by reading input data before performing calculations.
  22. Random is another useful class provided in the Java Core Library that generates pseudorandom numbers.
  23. Like Scanner, to use Random you must first invoke import java.util.Random; at the top of your source code file.
  24. The Random class a constructor has many useful methods for generating random numbers drawn from uniform and normal distributions.
  25. Pseudorandom numbers generated may have a boolean type or different primitive numerical types.
  26. To be useful in practical applications, the range of pseudorandom numbers generated often must be scaled and translated.
  27. Class libraries not included in the Java Core Library may be distributed as Java ARchive (JAR) files, which can be as simple as a zip archive containing .class files.
  28. The Java compiler command (javac) and launcher command (java) must be told where to find a JAR file containing classes referenced in your program. Use the -cp option (short for --class-path) to inform the command where to find your classes.