<< Chapter < Page Chapter >> Page >
An introduction to Java syntax covering simple Java expressions and the declaration of concrete classes and methods.

General:

A Java program consists of one or more classes one of them must be public and must have a method with the following signature:

public static void main (String[] args)

Basically, the main() method will instantiate appropriate objects and send them "messages" (by calling their methods) to perform the desired tasks.  The main() method should not contain any complicated program logic nor program flow control. In the example shown below, PizzaClient is the main class with the main() method.

UML Class Diagram of a Java program

 Example:

public class PizzaClient { /*** Prints the answer to the problem stated in the above.. */public void run() { Pizza round = new Pizza (3.99, new Circle (2.5));Pizza rect = new Pizza (4.99, new Rectangle (6, 4)); PizzaDeal pd = new PizzaDeal();System.out.println(round + " is a better deal than " + rect + ": " + pd.betterDeal(round, rect));} /*** Main entry to the program to find the better deal. * Instantiates an instance of PizzaClient and tells it to run.* This is what all main() should do: instantiates a bunch of objects and * "turn them loose"!* There should be no complicated logic and/or control in main(). * @param nu not used*/ public static void main (String[]nu) { new PizzaClient().run();} }public class Rectangle implements IShape { private double _width;private double _height; /*** Initializes this Rectangle width a given width and a given height * @param w width of this Rectangle,>= 0. * @param h height of this Rectangle,>= 0. */public Rectangle(double w, double h) { _height = h;_width = w; }/** * @returns this Rectangle's area.*/ public double getArea() {return _height * _width; }/** * Overrides the inherited method from class Object.* @returns a String describing a Rectangle with its width and height. */public String toString() { return "Rectangle(h = " + _height + ", w = " + _width + ")";} }

Notes on the toString() method:

toString() is a method that is inherited all the way from the base class, Object. It is the method that the Java system calls by default whenever a string representation of the class is needed. For instance, "This is "+ myObject is equivalent to "This is " + myObject.toString() . DrJava will call an object's toString() method if you type the object's name in the interaction window, without terminating the line with a semicolon. The return value of toString() is what prints out on the next line.

Comments syntax:

// Line-oriented - comment goes to end of the current line.

/* block-orientedcan span several lines. */

Class definition syntax:

[…] means optional .

[public] class class-name [inheritance-specification]{ [field-list;][constructor-list;] [method-list;]

}

Inheritance Specification looks like

[extends SomeClass] [implements Interface1,..., InterfaceN]

We will discuss the meaning of inheritance in due time.

Java statement syntax:

Each Java statement must terminate with a semi-colon. 

Field list syntax:

A field list consists of zero or more field declarations of the form

[static] [final][public | private | protected] field-type field-name [assignment];

 

Constructor list syntax:

A constructor list consists of zero or more constructor definitions of the form

[public | private | protected] class-name ([parameter-list]){ [statement-list;]}
The constructor's name must the same as the class name. Constructors are used for initialization of the object during the object's instantiation only.

Method list syntax:

A method list consists of zero or more method definitions of the form

[static] [final][public | private | protected] return-type method-name ([param-list]) { [statement-list;]}

A return type void means the method does not return any value.

param-list can be:

  • empty;

for example,

public double getArea() { // code ...}
  • of a fixed number of parameters

type1 param1, type2 param2, ... , typeN paramN

for example,

private void doSomethingWith(int n, double x, Pizza p) { // code ...}
  • of a variable number of parameters ( this is a new feature for Java 5.0 and upward )
type1 param1, type2 param2, .., typeN... params

In the above, typeN... params is called a variable argument list.  It must appear at the end of the whole parameter list.

for example,

private void doSomethingWith(int n, double x, Pizza... p) { // code ...}

The variable argument list can have zero or more arguments.  Here is a simple example:  use DrJava to define the following class in the definition pane.

public class VarArgExample { /*** returns the number of arguments in the variable argument list. */int argNum(int... nums) { return nums.length; // the var arg list is viewed as an array} }

Compile the above class and in the interactions pane, type the following:

VarArgExample vae = new VarArgExample(); // creates a VarArgExample object vae.argNum() // returns 0vae.argNum(42) // returns 1 vae.argNum(34, -99) // returns 2

Questions & Answers

A golfer on a fairway is 70 m away from the green, which sits below the level of the fairway by 20 m. If the golfer hits the ball at an angle of 40° with an initial speed of 20 m/s, how close to the green does she come?
Aislinn Reply
cm
tijani
what is titration
John Reply
what is physics
Siyaka Reply
A mouse of mass 200 g falls 100 m down a vertical mine shaft and lands at the bottom with a speed of 8.0 m/s. During its fall, how much work is done on the mouse by air resistance
Jude Reply
Can you compute that for me. Ty
Jude
what is the dimension formula of energy?
David Reply
what is viscosity?
David
what is inorganic
emma Reply
what is chemistry
Youesf Reply
what is inorganic
emma
Chemistry is a branch of science that deals with the study of matter,it composition,it structure and the changes it undergoes
Adjei
please, I'm a physics student and I need help in physics
Adjanou
chemistry could also be understood like the sexual attraction/repulsion of the male and female elements. the reaction varies depending on the energy differences of each given gender. + masculine -female.
Pedro
A ball is thrown straight up.it passes a 2.0m high window 7.50 m off the ground on it path up and takes 1.30 s to go past the window.what was the ball initial velocity
Krampah Reply
2. A sled plus passenger with total mass 50 kg is pulled 20 m across the snow (0.20) at constant velocity by a force directed 25° above the horizontal. Calculate (a) the work of the applied force, (b) the work of friction, and (c) the total work.
Sahid Reply
you have been hired as an espert witness in a court case involving an automobile accident. the accident involved car A of mass 1500kg which crashed into stationary car B of mass 1100kg. the driver of car A applied his brakes 15 m before he skidded and crashed into car B. after the collision, car A s
Samuel Reply
can someone explain to me, an ignorant high school student, why the trend of the graph doesn't follow the fact that the higher frequency a sound wave is, the more power it is, hence, making me think the phons output would follow this general trend?
Joseph Reply
Nevermind i just realied that the graph is the phons output for a person with normal hearing and not just the phons output of the sound waves power, I should read the entire thing next time
Joseph
Follow up question, does anyone know where I can find a graph that accuretly depicts the actual relative "power" output of sound over its frequency instead of just humans hearing
Joseph
"Generation of electrical energy from sound energy | IEEE Conference Publication | IEEE Xplore" ***ieeexplore.ieee.org/document/7150687?reload=true
Ryan
what's motion
Maurice Reply
what are the types of wave
Maurice
answer
Magreth
progressive wave
Magreth
hello friend how are you
Muhammad Reply
fine, how about you?
Mohammed
hi
Mujahid
A string is 3.00 m long with a mass of 5.00 g. The string is held taut with a tension of 500.00 N applied to the string. A pulse is sent down the string. How long does it take the pulse to travel the 3.00 m of the string?
yasuo Reply
Who can show me the full solution in this problem?
Reofrir Reply
Got questions? Join the online conversation and get instant answers!
Jobilize.com Reply

Get Jobilize Job Search Mobile App in your pocket Now!

Get it on Google Play Download on the App Store Now




Source:  OpenStax, Principles of object-oriented programming. OpenStax CNX. May 10, 2013 Download for free at http://legacy.cnx.org/content/col10213/1.37
Google Play and the Google Play logo are trademarks of Google Inc.

Notification Switch

Would you like to follow the 'Principles of object-oriented programming' conversation and receive update notifications?

Ask