Presentation is loading. Please wait.

Presentation is loading. Please wait.

DAT602 Database Application Development Lecture 5 JAVA Review.

Similar presentations


Presentation on theme: "DAT602 Database Application Development Lecture 5 JAVA Review."— Presentation transcript:

1 DAT602 Database Application Development Lecture 5 JAVA Review

2 JAVA is a product of Sun Microsystem. It is a object oriented language. Some features of JAVA: -interpreted -write once, run anywhere -support multi-thread -cross-platform Database Application Development - Lecture 5

3 Running mechanism of JAVA Database Application Development - Lecture 5 Java Source (.java) Java Class File (.class) compile Java Virtual (JVM) WindowsLinux execute Interpret

4 JAVA Editions J2EE(Java 2 Platform Enterprise Edition) J2SE(Java 2 Platform Standard Edition) J2ME(Java 2 Platform Micro Edition) JDK (Java Development Kit) is used for developing Java applications. Database Application Development - Lecture 5

5 Source code of a simple Java application. HelloWorld.java public class HelloWorld{ public static void main(String[] args){ System.out.println("Hello World!"); } } We can use command “javac” to compile java file. The compiled file’s extension name is.class Database Application Development - Lecture 5

6 Some Java’s Primitive Data Types byte: 8-bit, -128 to 127 short: 16-bit, -32,768 to 32,767 int: 32-bit, -2,147,483,648 to 2,147,483,647 float: 32-bit double: 64-bit char: 16-bit Unicode character boolean: true or false Database Application Development - Lecture 5

7 How to declare and initialize a variable with primitive data? DATATYPE VariableName = initialValue; int x = 12,y = 300; float z = 3.24; double w = 1.2; boolean b = true; char c = 'A'; Database Application Development - Lecture 5

8 Array An array is a container object that holds a fixed number of values of a single type. The length of an array is established when the array is created. Database Application Development - Lecture 5

9 Simple example of array class ArrayDemo { public static void main(String[] args) { int[] anArray; // declares an array of integers anArray = new int[10]; // allocates memory for 10 integers anArray[0] = 100; // initialize first element anArray[1] = 200; // initialize second element anArray[2] = 300; // etc. int value = anArray[2]; } Database Application Development - Lecture 5

10 Operators are special symbols that perform specific operations on one, two, or three operands, and then return a result. Database Application Development - Lecture 5 OperatorsPrecedence postfixexpr++ expr-- unary++expr --expr multiplicative* / % additive+ - relational = equality== != logical AND&& logical OR||

11 The Equality and Relational Operators == equal to != not equal to > greater than >= greater than or equal to < less than <= less than or equal to Database Application Development - Lecture 5

12 Expressions, Statements, and Blocks Now that you understand variables and operators, it's time to learn about expressions, statements, and blocks. Operators may be used in building expressions, which compute values; expressions are the core components of statements; statements may be grouped into blocks. Database Application Development - Lecture 5

13 Expression An expression is a construct made up of variables, operators, and method invocations, which are constructed according to the syntax of the language, that evaluates to a single value. You've already seen examples of expressions, illustrated in bold below: int cadence = 0; anArray[0] = 100; Database Application Development - Lecture 5

14 Statement Statements are roughly equivalent to sentences in natural languages. A statementforms a complete unit of execution. The following types of expressions can be made into a statement by terminating the expression with a semicolon (;). Database Application Development - Lecture 5

15 Blocks A block is a group of zero or more statements between balanced braces and can be used anywhere a single statement is allowed. Database Application Development - Lecture 5

16 The following example, BlockDemo, illustrates the use of blocks: class BlockDemo { public static void main(String[] args) { boolean condition = true; if (condition) { // begin block 1 System.out.println("Condition is true."); } // end block one else { // begin block 2 System.out.println("Condition is false."); }//end block 2 } Database Application Development - Lecture 5

17 Control Flow Statements Control flow statements, however, break up the flow of execution by employing decision making, looping, and branching, enabling your program to conditionally execute particular blocks of code. Database Application Development - Lecture 5

18 Following slides describes the decision-making statements (if-then, if-then-else, switch), the looping statements (for, while, do-while), and the branching statements (break, continue, return) supported by the Java programming language. Database Application Development - Lecture 5

19 The if-then Statement The if-then statement is the most basic of all the control flow statements. It tells your program to execute a certain section of code only if a particular test evaluates to true. Database Application Development - Lecture 5

20 For example, the Bicycle class could allow the brakes to decrease the bicycle's speed only if the bicycle is already in motion. One possible implementation of the applyBrakes method could be in next slide. Database Application Development - Lecture 5

21 void applyBrakes(){ if (isMoving){ // the "if" clause: bicycle must be moving currentSpeed--; // the "then" clause: decrease current speed } If this test evaluates to false (meaning that the bicycle is not in motion), control jumps to the end of the if-then statement. Database Application Development - Lecture 5

22 The if-then-else Statement The if-then-else statement provides a secondary path of execution when an "if" clause evaluates to false. You could use an if- then-else statement in the apply Brakesmethod to take some action if the brakes are applied when the bicycle is not in motion. Database Application Development - Lecture 5

23 In this case, the action is to simply print an error message stating that the bicycle has already stopped. void applyBrakes(){ if (isMoving) { currentSpeed--; } else { System.err.println("The bicycle is stop!"); } Database Application Development - Lecture 5

24 If – else – then statement The following program, IfElseDemo, assigns a grade based on the value of a test score: an A for a score of 90% or above, a B for a score of 80% or above, and so on. Database Application Development - Lecture 5

25 class IfElseDemo { public static void main(String[] args) { int testscore = 76; char grade; if (testscore >= 90) { grade = ‘A’;} else if (testscore >= 80) { grade = 'B'; } else if (testscore >= 70) { grade = 'C'; } else if (testscore >= 60) { grade = 'D'; } else { grade = 'F'; } System.out.println("Grade = " + grade); } } Database Application Development - Lecture 5

26 The switch Statement Unlike if-then and if-then-else, the switch statement allows for any number of possible execution paths. A switch works with the byte, short, char, and intprimitive data types. Database Application Development - Lecture 5

27 The switch Statement The following program, SwitchDemo, declares an int named month whose value represents a month out of the year. The program displays the name of the month, based on the value of month, using the switch statement. Database Application Development - Lecture 5

28 class SwitchDemo { public static void main(String[] args) { int month = 8; switch (month) { case 1:System.out.println("January");break; case 2: System.out.println("February"); break; case 3: System.out.println("March"); break; default: System.out.println("Invalid month."); } Database Application Development - Lecture 5

29 The while Statements The while statement continually executes a block of statements while a particular condition is true. Its syntax can be expressed as: while (expression) { statement(s) } Database Application Development - Lecture 5

30 class WhileDemo { public static void main(String[] args){ int count = 1; while (count < 11) { System.out.println("Count is: " + count); count++; } Database Application Development - Lecture 5

31 do-while statement The Java programming language also provides a do-while statement, which can be expressed as follows: do { statement(s) } while (expression); Database Application Development - Lecture 5

32 The for Statement The for statement provides a compact way to iterate over a range of values. Programmers often refer to it as the "for loop" because of the way in which it repeatedly loops until a particular condition is satisfied. for (initialization; termination; increment) { statement(s) } Database Application Development - Lecture 5

33 class ForDemo { public static void main(String[] args){ for(int i=1; i<11; i++){ System.out.println("Count is: " + i); } Database Application Development - Lecture 5

34 Reference: http://java.sun.com/docs/books/tutorial/java/ nutsandbolts/index.html Database Application Development - Lecture 5


Download ppt "DAT602 Database Application Development Lecture 5 JAVA Review."

Similar presentations


Ads by Google