1 / 42

Java Review

Java Review. A Statement. I have been asked to do these Lectures at YOUR request. They are to help YOU with any Java question that you have. E.g. How to do File Input / Output How to do User Input How to do Searching / Sorting To succeed, they need YOUR input.

Télécharger la présentation

Java Review

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Java Review

  2. A Statement • I have been asked to do these Lectures at YOUR request. • They are to help YOU with any Java question that you have. • E.g. • How to do File Input / Output • How to do User Input • How to do Searching / Sorting • To succeed, they need YOUR input. • Tell me what problems you are having, and I will try to help you!

  3. Programming in Java • In Java, a program generally has the following structure: • Declaring variables/ initializations • E.g. int balance; • Processing • reading inputs • process inputs • show output • Exit the program

  4. Data Types – Variables & Initializations • String for strings of letters e.g. String LastName = “Kim”; • char for characters e.g. char alphabet = ‘A’; • byte, short, int, and long for integer numbers e.g. int number = 3; • float & double for real numbers e.g. double pi = 3.14159 • boolean for logical e.g. boolean check = true;

  5. Expressions and Operators • Expressions: ( ), * ,/ , +, - • Operators: && for AND || for OR ! for NOT == for equal != for NOT equal

  6. Selection Statements • if statement ex) if (A>B) { System.out.println(“A>B”); } • if…else statement ex) if (A>B) { System.out.println(“A>B”); } else { System.out.println(“A<=B”); } • switch Statement ex) switch (A) {case 1: { System.out.println(“A=1”); break; }case 2: { System.out.println(“A=2”); break; } …default: { System.out.println(“A Undefined”); } }

  7. Repetitions(while, do while, and for) • An example adding all numbers between 1 to 100 • Using While: // Variable Declaration & Initializationint sum = 0;int count = 0; // Processingwhile (count <= 1000) { sum = sum + count; count = count +1; //same as count++ } // Output System.out.println(“Sum: “ + sum);

  8. Repetitions(while, do while, and for) • Using do-while: // Variable Declaration & Initializationint sum =0; int count =0; // Processingdo { sum = sum + count; count = count +1; //same as count++ } while (count <=1000); • Using for: // Variable Declaration & Initializationint sum =0; // Processingfor (int count =0; count <= 100; count++) { sum = sum +count; }

  9. Introducing Methods Method Structure A method is a collection of statements that are grouped together to perform an operation.

  10. Declaring Methods /** * This method returns the maximum of two numbers * @param num1 the first number * @param num2 the second number * @return either num1 or num2 */ int max(int num1, int num2) { if (num1 > num2) { return num1; } else { return num2; } }

  11. Passing Parameters /** * This method prints a message a specified number * of times. * @param message the message to be printed * @param n the number of times the message is to be * printed */ void nPrintln(String message, int n) { for (int i=0; i<n; i++) { System.out.println(message); } }

  12. The main method • One of these methods is required for every program you write. • If your program does not have one, then you cannot run it. • The main method has a very specific syntax:publicstaticvoid main(String[] args) { // Your code goes here!} • For example:publicstaticvoid main(String[] args) { System.out.println(“Hello World!”);}

  13. An Example Program class MyProgram { /** * This method prints a message a specified number * of times. * @param message the message to be printed * @param n the number of times the message is to be * printed */ void nPrintln(String message, int n) { for (int i=0; i<n; i++) { System.out.println(message); } }publicstaticvoid main(String[] args) { nPrintln(“Hello World!”, 10);} }

  14. Your Turn… • How do you write a program that prints:“I am the coolest programmer”twenty times on the screen

  15. Declaring Array Variables • Option A: • Syntax:datatype[] arrayname; • Example:int[] myList; • Option B: • Syntax:datatype arrayname[]; • Example:int myList[];

  16. Creating Arrays • Syntax:arrayName = new datatype[arraySize]; • Example:myList = newint[10];

  17. Declaring and Creating in One Step • Option A: • Syntax:datatype[] arrayname = new datatype[arraySize]; • Example:double[] myList = newdouble[10]; • Option B: • Syntax:datatype arrayname[] = new datatype[arraySize]; • Example:double myList[] = newdouble[10];

  18. Initializing Arrays • Using a loop:for (int i = 0; i < myList.length; i++) { myList[i] = (double)i;} • Declaring, creating, and initializing in one step:double[] myList = {1.9, 2.9, 3.4, 3.5};

  19. Searching Arrays /** * This method searches a specified array for a value. * @param array the array to be searched * @param value the value to be searched for * @return true if the value is in the array, false * otherwise */ boolean contains(double[] array, double value) { boolean found = false; int index = 0; while ((index <= array.length) && !found) { if (array[index] == value) { found = true; } } return found; }

  20. Again, your turn… • How do you write a program that searches through the following list of numbers:23.2, 12.1, 34.3, 6.8, 4.0, 34.5, 22.7, 313.6, 12.5, 81.2, 56.3,363.3, 135.5, 176.4, 5.3, 44.2, 76.5, 29.1, 2.7, 24.5, -42.0,23.19, -200.4, 0.0, 9.9, 564.3, 235.0, 83.16, 43.38, 1.2, 18.16to see whether 2.7 is in the list. • Now write a program to check whether 8.1 is in the same list.

  21. Object-Oriented Programming in Java • Java programs are formed from a set of classes. • A class is a container for code. • Whenever you create a program, you write your code inside one or more classes. • Some of the classes you will use in your programs are pre-written and are provided as part of the Java Application Programming Interfaces (APIs). • See http://java.sun.com/j2se/1.3/docs/api/index.html • Other classes you must write yourself.

  22. Object-Oriented Programming in Java • When we run a Java Program, we may create objects. • Objects are instances of classes. • Classes describes a general set of features. • Objects specify concrete values for those features. • For example: • Let us start with a general description of a car: • A Car has four wheels, an engine, a chassis, a colour, some doors … • The next two descriptions refer to particular cars. • My car is brown and has a 2 litre engine, a Saab chassis, and five doors. • Peter has a yellow car with a 1.4 litre engine, a VW Polo chassis, and three doors.

  23. How does this relate to Java? • The general description of a Car is like a class in Java – a general description of what constitutes a car. • Both my car and Peter’s car are described in terms of the general description of a car (i.e. the colour, engine size, chassis type, number of doors). • These particular cars are like objects in Java - a concrete instance of the general description of a Car. • Note: The number of wheels is the same for all cars. • We call things that are the same for all cars constants.

  24. Data Attributes Methods, and Messages • Classes contain two types of feature: • Data attributes describe the information that a class contains (for example the colour of a car, the type of chassis, etc.) • Methods describe operations that can be performed by instances (objects) of the class (for example, a Bank Account class may include methods to withdraw or deposit cash). • To get an object to perform a method we send a message: • This message must be sent to that object identifying the method to be performed. • This message should also include any data (parameters) required by the method.

  25. Class Declaration class Circle { publicdouble radius = 1.0; /** * This method calculates the area of the circle. * @return the area of the circle */ publicdouble findArea() { return radius*radius*3.14159; } } Data attribute Method

  26. Declaring Object Variables • Syntax:ClassName objectName; • Example:Circle myCircle;

  27. Creating Objects • Syntax:objectName = new ClassName(); • Example:myCircle = new Circle();

  28. Declaring/Creating Objects in a Single Step • Syntax:ClassName objectName = new ClassName(); • Example:Circle myCircle = new Circle();

  29. Accessing Objects • Referencing the object’s data: • Syntax:objectName.data • Example:myCircle.radius • Referencing the object’s method (sending a message): • Syntax:objectName.method(…) • Example:myCircle.findArea()

  30. Constructors • Constructors are special methods that are called upon creation of an object. • Their purpose is to initialise objects as they are created. • Syntax:ClassName(…) { // Initialisation code goes here!} • Example:Circle(double r) { radius = r;}

  31. Constructors • Example (cont):Circle() { radius = 1.0;} • We can specify which constructor to use when we create a new object. • Example:myCircle = new Circle(5.0);

  32. Modifiers By default, the class, variable, or data can beaccessed by any class in the same package. • public The class, data, or method is visible to any class in any package. • private The data or methods can be accessed only by the declaring class.

  33. An Example Program class TestCircle { publicstaticvoid main(String[] args) { Circle myCircle = new Circle(); System.out.println("The area of the circle of radius " + myCircle.radius + " is " + myCircle.findArea()); } } class Circle { double radius = 1.0; /*** This method calculates the area of the circle.* @return the area of the circle*/ double findArea() { return radius*radius*3.14159; } }

  34. Packages • There are thousands (if not tens of thousands) of Java classes. • Finding the right one can be difficult (i.e. I want a class that does file input…) • Finding a meaningful name can be difficult (think of yahoo usernames!) • Packages are used to organise Java classes. • Packages are like domain names – they are hierarchical (e.g. packages can have sub-packages, which can have sub-packages, and so on…). • There are five basic Java packages: java.lang Classes that are part of the basic language (e.g. Strings) java.io Classes that do input and output java.net Classes for networking java.awt Classes for creating Graphical Interfaces java.util General Utility Classes • So, if I want a class that does file input, I look in the input/output (io) package!

  35. Referencing Classes in Different Packages • If we want to use a class that is in a package (with the exception of those in the java.lang package), we need to declare our intention at the top of the program. • We do this with an import statement • For example:import java.io.PrintStream; • If we want to use multiple classes from a single package we can use the following statement:import java.io.*; This means “any class”

  36. Some Useful Java Classes • One of the most useful sets of Java classes are the input/output (io) classes. • These classes are located in the java.io package and are part of the default Java API. • These classes allow programs to perform input/output in a variety of ways. • There are many different types of io class. • You are not expected to know them all intimately, but you should know how to do a few basic things with them (e.g. User input, File input/output, etc.)

  37. System.out • You have already used an io class implicitly when you write information to the screen. • System.out refers to a data attribute of the System class. • This attribute is an instance of the class PrintStream. • This class is used for output only. • The PrintStream class includes a method, println, that prints a string to the specified output. • We don’t know where this output comes from! • We don’t need to know – we just need to know where it goes to (i.e. the screen).

  38. Handling User Input • To get input from the user, we use another data attribute of the System class:System.in • This attribute is an instance of the InputStream class. • The InputStream class is not easy to use (it works only with bytes). • To make things easier, we can wrap the input stream in other io classes. • In particular, we use two classes: • InputStreamReader. This class converts the byte stream into a character stream (this is much more useful – honestly!). • BufferedReader. This class buffers data from the enwrapped stream, allowing smoother reading of the stream (it doesn’t wait for the program to ask for the next character in the stream).

  39. Handling User Input • To wrap an io object, we create a new io object, passing the old io object into the constructor. • For example, to wrap System.in within an InputStreamReader, we write:new InputStreamReader(System.in) • To use the BufferedReader (which, remember, is an optimisation), we wrap the InputStreamReader object we created above. • For example:new BufferedReader(new InputStreamReader(System.in)) • Once we have a BufferedReader, we can use a nice method it provides called readLine() which reads a line of text! • This makes life much easier!

  40. Handling User Input • Now that we have a way of reading a line of text from the System input stream (i.e. the keyboard), how do we use it? public String readString() { BufferedReader in = new BufferedReader( new InputStreamReader(System.in)); String line = null; try { line = in.readLine(); while (line == null) { line = in.readLine(); } } catch (IOException ie) { System.out.println(“The following problem occurred “ + “when reading input: “ + ie); } return line; }

  41. More Help - Books • “Java How to Program by Deitel & Deitel” • Introduction to Java Programming by Daniel Liang • An Introduction to Java programming with Java by Thomas Wu • Easier books can be found in course.com

  42. More Help - Websites • http://java.sun.com • Loads of free tutorials • Java Documentation for all Java classes • http://java.sun.com/jdc42 • Free registration • Tech support, training, articles, resources, links • http://www.developer.com • Java directory page • Thousands of applets and resources • http://www.gamelan.com • All-around Java resource • References, games, downloads, talk to experts...

More Related