SlideShare a Scribd company logo
Dr. S.SHAIK PARVEEN
Department of Computer Science
CLASS DETAILS
 Academic Year 2021-2022
 I M.Sc.(CS)
 II Semester
 Batch 2020-2022
 Course Coordinator: Dr. S.SHAIK PARVEEN
 Course Name: Advanced Java
Programming
 Course Code : 20PCSC21
 Semester : II Part III : Core
COURSE INFORMATION
COURSE PREREQUISITES
 basic understanding of the Java language
 a basic understanding of software
development
 a basic understanding of the software
development life cycle
4
Course Co-requisites
 Good understanding of programming and
OOPs concepts.
COURSE OBJECTIVES:
 To learn how to use Core Java Technologies.
 To implement OOP Concept.
 To get knowledge in Classes, Fundamentals,
Methods, Constructors and Garbage
 To analyze the current Thread and Synchronization
 To cover Applet, AWT Controls, Swing and Java
Beans.
UNIT I
JAVA - GENERAL
 Java is:
 platform independent programming language
 similar to C++ in syntax
 similar to Smalltalk in mental paradigm
 Pros: also ubiquitous to net
 Cons: interpreted, and still under development
(moving target)
JAVA - GENERAL
 Java has some interesting features:
 automatic type checking,
 automatic garbage collection,
 simplifies pointers; no directly accessible pointer to
memory,
 simplified network access,
 multi-threading!
Compile-time Environment
Compile-time Environment
Java
Bytecodes
move locally
or through
network
Java
Source
(.java)
Java
Compiler
Java
Bytecode
(.class )
Java
Interpreter
Just in
Time
Compiler
Runtime System
Class
Loader
Bytecode
Verifier
Java
Class
Libraries
Operating System
Hardware
Java
Virtual
machine
HOW IT WORKS…!
HOW IT WORKS…!
 Java is independent only for one reason:
 Only depends on the Java Virtual Machine
(JVM),
 code is compiled to bytecode, which is
interpreted by the resident JVM,
 JIT (just in time) compilers attempt to
increase speed.
JAVA - SECURITY
 Pointer denial - reduces chances of virulent
programs corrupting host,
 Applets even more restricted -
 May not
 run local executables,
 Read or write to local file system,
 Communicate with any server other than the originating server.
OBJECT-ORIENTED
 Java supports OOD
 Polymorphism
 Inheritance
 Encapsulation
 Java programs contain nothing but definitions and
instantiations of classes
 Everything is encapsulated in a class!
JAVA ADVANTAGES
 Portable - Write Once, Run Anywhere
 Security has been well thought through
 Robust memory management
 Designed for network programming
 Multi-threaded (multiple simultaneous tasks)
 Dynamic & extensible (loads of libraries)
 Classes stored in separate files
 Loaded only when needed
BASIC JAVA SYNTAX
PRIMITIVE TYPES AND VARIABLES
 boolean, char, byte, short, int, long, float, double etc.
 These basic (or primitive) types are the only types
that are not objects (due to performance issues).
 This means that you don’t use the new operator to
create a primitive variable.
 Declaring primitive variables:
float initVal;
int retVal, index = 2;
double gamma = 1.2, brightness
boolean valueOk = false;
INITIALISATION
 If no value is assigned prior to use, then the
compiler will give an error
 Java sets primitive variables to zero or false
in the case of a boolean variable
 All object references are initially set to null
 An array of anything is an object
 Set to null on declaration
 Elements to zero false or null on creation
DECLARATIONS
int index = 1.2; // compiler error
boolean retOk = 1; // compiler error
double fiveFourths = 5 / 4; // no error!
float ratio = 5.8f; // correct
double fiveFourths = 5.0 / 4.0; // correct
 1.2f is a float value accurate to 7 decimal places.
 1.2 is a double value accurate to 15 decimal places.
ASSIGNMENT
 All Java assignments are right associative
int a = 1, b = 2, c = 5
a = b = c
System.out.print(
“a= “ + a + “b= “ + b + “c= “ + c)
 What is the value of a, b & c
 Done right to left: a = (b = c);
CASTING
 Casting is the temporary conversion of a variable from its
original data type to some other data type.
 Like being cast for a part in a play or movie
 With primitive data types if a cast is necessary from a less
inclusive data type to a more inclusive data type it is done
automatically.
int x = 5;
double a = 3.5;
double b = a * x + a / x;
double c = x / 2;
 if a cast is necessary from a more inclusive to a less
inclusive data type the class must be done explicitly by the
programmer
 failure to do so results in a compile error.
double a = 3.5, b = 2.7;
int y = (int) a / (int) b;
y = (int)( a / b );
y = (int) a / b; //syntax error
PRIMITIVE CASTING
double
float
long
int
short,
char
byte
Outer ring is most
inclusive data type.
Inner ring is least
inclusive.
In expressions
variables and
sub expressions
of less inclusive
data types are
automatically cast
to more inclusive.
If trying to place
expression that is
more inclusive into
variable that is less
inclusive, explicit cast
must be performed.
From MORE to LESS
BASIC MATHEMATICAL OPERATORS
 * / % + - are the mathematical operators
 * / % have a higher precedence than + or -
double myVal = a + b % d – c * d / b;
 Is the same as:
double myVal = (a + (b % d)) –
((c * d) / b);
STATEMENTS & BLOCKS
 A simple statement is a command terminated by
a semi-colon:
name = “Fred”;
 A block is a compound statement enclosed in
curly brackets:
{
name1 = “Fred”; name2 = “Bill”;
}
 Blocks may contain other blocks
FLOW OF CONTROL
 Java executes one statement after the other
in the order they are written
 Many Java statements are flow control
statements:
Alternation: if, if else, switch
Looping: for, while, do while
Escapes: break, continue, return
IF – THE CONDITIONAL STATEMENT
 The if statement evaluates an expression and if that
evaluation is true then the specified action is taken
if ( x < 10 ) x = 10;
 If the value of x is less than 10, make x equal to 10
 It could have been written:
if ( x < 10 )
x = 10;
 Or, alternatively:
if ( x < 10 ) { x = 10; }
RELATIONAL OPERATORS
== Equal (careful)
!= Not equal
>= Greater than or equal
<= Less than or equal
> Greater than
< Less than
IF… ELSE
 The if … else statement evaluates an expression
and performs one action if that evaluation is true or
a different action if it is false.
if (x != oldx) {
System.out.print(“x was changed”);
}
else {
System.out.print(“x is unchanged”);
}
NESTED IF … ELSE
if ( myVal > 100 ) {
if ( remainderOn == true) {
myVal = mVal % 100;
}
else {
myVal = myVal / 100.0;
}
}
else
{
System.out.print(“myVal is in range”);
}
ELSE IF
 Useful for choosing between alternatives:
if ( n == 1 ) {
// execute code block #1
}
else if ( j == 2 ) {
// execute code block #2
}
else {
// if all previous tests have failed, execute
code block #3
}
A WARNING…
WRONG!
if( i == j )
if ( j == k )
System.out.print
(
“i equals
k”);
else
System.out.print(
“i is not equal
to j”);
CORRECT!
if( i == j ) {
if ( j == k )
System.out.print(
“i equals k”);
}
else
System.out.print(“
i is not equal to
j”); //
Correct!
THE SWITCH STATEMENT
switch ( n ) {
case 1:
// execute code block #1
break;
case 2:
// execute code block #2
break;
default:
// if all previous tests fail then
//execute code block #4
break;
}
THE FOR LOOP
 Loop n times
for ( i = 0; i < n; n++ ) {
// this code body will execute n times
// ifrom 0 to n-1
}
 Nested for:
for ( j = 0; j < 10; j++ ) {
for ( i = 0; i < 20; i++ ){
// this code body will execute 200 times
}
}
WHILE LOOPS
while(response == 1) {
System.out.print( “ID =” + userID[n]);
n++;
response = readInt( “Enter “);
}
What is the minimum number of times the loop
is executed?
What is the maximum number of times?
DO {… } WHILE LOOPS
do {
System.out.print( “ID =” + userID[n] );
n++;
response = readInt( “Enter ” );
}while (response == 1);
What is the minimum number of times the loop
is executed?
What is the maximum number of times?
BREAK
 A break statement causes an exit from the
innermost containing while, do, for or
switch statement.
for ( int i = 0; i < maxID, i++ ) {
if ( userID[i] == targetID ) {
index = i;
break;
}
} // program jumps here after break
CONTINUE
 Can only be used with while, do or for.
 The continue statement causes the innermost loop
to start the next iteration immediately
for ( int i = 0; i < maxID; i++ ) {
if ( userID[i] != -1 ) continue;
System.out.print( “UserID ” + i + “ :” +
userID);
}
ARRAYS
 Am array is a list of similar things
 An array has a fixed:
 name
 type
 length
 These must be declared when the array is created.
 Arrays sizes cannot be changed during the
execution of the code
myArray has room for 8 elements
 the elements are accessed by their index
 in Java, array indices start at 0
3 6 3 1 6 3 4 1
myArray =
0 1 2 3 4 5 6 7
DECLARING ARRAYS
int myArray[];
declares myArray to be an array of integers
myArray = new int[8];
sets up 8 integer-sized spaces in memory, labelled
myArray[0] to myArray[7]
int myArray[] = new int[8];
combines the two statements in one line
ASSIGNING VALUES
 refer to the array elements by index to store values
in them.
myArray[0] = 3;
myArray[1] = 6;
myArray[2] = 3; ...
 can create and initialise in one step:
int myArray[] = {3, 6, 3, 1, 6, 3, 4, 1};
ITERATING THROUGH ARRAYS
 for loops are useful when dealing with arrays:
for (int i = 0; i < myArray.length; i++) {
myArray[i] = getsomevalue();
}
ARRAYS OF OBJECTS
 So far we have looked at an array of primitive
types.
 integers
 could also use doubles, floats, characters…
 Often want to have an array of objects
 Students, Books, Loans ……
 Need to follow 3 steps.
DECLARING THE ARRAY
1. Declare the array
private Student studentList[];
 this declares studentList
2 .Create the array
studentList = new Student[10];
 this sets up 10 spaces in memory that can
hold references to Student objects
3. Create Student objects and add them to the
array: studentList[0] = new
Student("Cathy", "Computing");
Ad

Recommended

Java project-presentation
Java project-presentation
APSMIND TECHNOLOGY PVT LTD.
 
Java abstract class & abstract methods
Java abstract class & abstract methods
Shubham Dwivedi
 
Arrays in Java
Arrays in Java
Naz Abdalla
 
Java Programming
Java Programming
Elizabeth alexander
 
SQLITE Android
SQLITE Android
Sourabh Sahu
 
Introduction to java
Introduction to java
Saba Ameer
 
Genesis and Overview of Java
Genesis and Overview of Java
Ravi_Kant_Sahu
 
OOP Introduction with java programming language
OOP Introduction with java programming language
Md.Al-imran Roton
 
Servlet.ppt
Servlet.ppt
VMahesh5
 
Basic of Java
Basic of Java
Ajeet Kumar Verma
 
OOP java
OOP java
xball977
 
Introduction to Node.js
Introduction to Node.js
Vikash Singh
 
Java servlets and CGI
Java servlets and CGI
lavanya marichamy
 
core java
core java
Roushan Sinha
 
Introduction to java
Introduction to java
Java Lover
 
Java buzzwords
Java buzzwords
ramesh517
 
Java Presentation
Java Presentation
pm2214
 
android sqlite
android sqlite
Deepa Rani
 
Android User Interface
Android User Interface
Shakib Hasan Sumon
 
Introduction to java (revised)
Introduction to java (revised)
Sujit Majety
 
Features of JAVA Programming Language.
Features of JAVA Programming Language.
Bhautik Jethva
 
Java tutorial PPT
Java tutorial PPT
Intelligo Technologies
 
Software engineering Questions and Answers
Software engineering Questions and Answers
Bala Ganesh
 
Java applets
Java applets
Khan Mac-arther
 
Introduction to Node js
Introduction to Node js
Akshay Mathur
 
Introduction to Java Programming Language
Introduction to Java Programming Language
jaimefrozr
 
Advance Java Topics (J2EE)
Advance Java Topics (J2EE)
slire
 
This keyword in java
This keyword in java
Hitesh Kumar
 
Java tutorial PPT
Java tutorial PPT
Intelligo Technologies
 
Java tutorials
Java tutorials
QUAID-E-AWAM UNIVERSITY OF ENGINEERING, SCIENCE & TECHNOLOGY, NAWABSHAH, SINDH, PAKISTAN
 

More Related Content

What's hot (20)

Servlet.ppt
Servlet.ppt
VMahesh5
 
Basic of Java
Basic of Java
Ajeet Kumar Verma
 
OOP java
OOP java
xball977
 
Introduction to Node.js
Introduction to Node.js
Vikash Singh
 
Java servlets and CGI
Java servlets and CGI
lavanya marichamy
 
core java
core java
Roushan Sinha
 
Introduction to java
Introduction to java
Java Lover
 
Java buzzwords
Java buzzwords
ramesh517
 
Java Presentation
Java Presentation
pm2214
 
android sqlite
android sqlite
Deepa Rani
 
Android User Interface
Android User Interface
Shakib Hasan Sumon
 
Introduction to java (revised)
Introduction to java (revised)
Sujit Majety
 
Features of JAVA Programming Language.
Features of JAVA Programming Language.
Bhautik Jethva
 
Java tutorial PPT
Java tutorial PPT
Intelligo Technologies
 
Software engineering Questions and Answers
Software engineering Questions and Answers
Bala Ganesh
 
Java applets
Java applets
Khan Mac-arther
 
Introduction to Node js
Introduction to Node js
Akshay Mathur
 
Introduction to Java Programming Language
Introduction to Java Programming Language
jaimefrozr
 
Advance Java Topics (J2EE)
Advance Java Topics (J2EE)
slire
 
This keyword in java
This keyword in java
Hitesh Kumar
 
Servlet.ppt
Servlet.ppt
VMahesh5
 
Introduction to Node.js
Introduction to Node.js
Vikash Singh
 
Introduction to java
Introduction to java
Java Lover
 
Java buzzwords
Java buzzwords
ramesh517
 
Java Presentation
Java Presentation
pm2214
 
android sqlite
android sqlite
Deepa Rani
 
Introduction to java (revised)
Introduction to java (revised)
Sujit Majety
 
Features of JAVA Programming Language.
Features of JAVA Programming Language.
Bhautik Jethva
 
Software engineering Questions and Answers
Software engineering Questions and Answers
Bala Ganesh
 
Introduction to Node js
Introduction to Node js
Akshay Mathur
 
Introduction to Java Programming Language
Introduction to Java Programming Language
jaimefrozr
 
Advance Java Topics (J2EE)
Advance Java Topics (J2EE)
slire
 
This keyword in java
This keyword in java
Hitesh Kumar
 

Similar to Unit I Advanced Java Programming Course (20)

Java tutorial PPT
Java tutorial PPT
Intelligo Technologies
 
Java tutorials
Java tutorials
QUAID-E-AWAM UNIVERSITY OF ENGINEERING, SCIENCE & TECHNOLOGY, NAWABSHAH, SINDH, PAKISTAN
 
Java Tutorial | My Heart
Java Tutorial | My Heart
Bui Kiet
 
Java_Tutorial_Introduction_to_Core_java.ppt
Java_Tutorial_Introduction_to_Core_java.ppt
Govind Samleti
 
Java Tutorial
Java Tutorial
ArnaldoCanelas
 
Javatut1
Javatut1
desaigeeta
 
Java tut1 Coderdojo Cahersiveen
Java tut1 Coderdojo Cahersiveen
Graham Royce
 
Java tut1
Java tut1
Sumit Tambe
 
Java tut1
Java tut1
Sumit Tambe
 
Synapseindia reviews.odp.
Synapseindia reviews.odp.
Tarunsingh198
 
Java teaching ppt for the freshers in colleeg.ppt
Java teaching ppt for the freshers in colleeg.ppt
vvsofttechsolution
 
Java Tut1
Java Tut1
guest5c8bd1
 
Java Tutorial
Java Tutorial
Vijay A Raj
 
Java tut1
Java tut1
Ajmal Khan
 
Tutorial java
Tutorial java
Abdul Aziz
 
Java basic tutorial by sanjeevini india
Java basic tutorial by sanjeevini india
Sanjeev Tripathi
 
Java basic tutorial by sanjeevini india
Java basic tutorial by sanjeevini india
sanjeeviniindia1186
 
Java if and else
Java if and else
pratik8897
 
Knowledge of Javascript
Knowledge of Javascript
Samuel Abraham
 
00_Introduction to Java.ppt
00_Introduction to Java.ppt
HongAnhNguyn285885
 
Ad

More from parveen837153 (7)

Advanced Excel
Advanced Excel
parveen837153
 
Cyber Security
Cyber Security
parveen837153
 
Cyber Security
Cyber Security
parveen837153
 
Introduction to CSS in HTML.ppt
Introduction to CSS in HTML.ppt
parveen837153
 
Object Oriented Programming using C++.pptx
Object Oriented Programming using C++.pptx
parveen837153
 
IOT-Monograph .docx
IOT-Monograph .docx
parveen837153
 
Internet of things Unit I
Internet of things Unit I
parveen837153
 
Introduction to CSS in HTML.ppt
Introduction to CSS in HTML.ppt
parveen837153
 
Object Oriented Programming using C++.pptx
Object Oriented Programming using C++.pptx
parveen837153
 
Internet of things Unit I
Internet of things Unit I
parveen837153
 
Ad

Recently uploaded (20)

Public Health For The 21st Century 1st Edition Judy Orme Jane Powell
Public Health For The 21st Century 1st Edition Judy Orme Jane Powell
trjnesjnqg7801
 
University of Ghana Cracks Down on Misconduct: Over 100 Students Sanctioned
University of Ghana Cracks Down on Misconduct: Over 100 Students Sanctioned
Kweku Zurek
 
List View Components in Odoo 18 - Odoo Slides
List View Components in Odoo 18 - Odoo Slides
Celine George
 
HistoPathology Ppt. Arshita Gupta for Diploma
HistoPathology Ppt. Arshita Gupta for Diploma
arshitagupta674
 
Filipino 9 Maikling Kwento Ang Ama Panitikang Asiyano
Filipino 9 Maikling Kwento Ang Ama Panitikang Asiyano
sumadsadjelly121997
 
GREAT QUIZ EXCHANGE 2025 - GENERAL QUIZ.pptx
GREAT QUIZ EXCHANGE 2025 - GENERAL QUIZ.pptx
Ronisha Das
 
LDMMIA Shop & Student News Summer Solstice 25
LDMMIA Shop & Student News Summer Solstice 25
LDM & Mia eStudios
 
Code Profiling in Odoo 18 - Odoo 18 Slides
Code Profiling in Odoo 18 - Odoo 18 Slides
Celine George
 
Tanja Vujicic - PISA for Schools contact Info
Tanja Vujicic - PISA for Schools contact Info
EduSkills OECD
 
IIT KGP Quiz Week 2024 Sports Quiz (Prelims + Finals)
IIT KGP Quiz Week 2024 Sports Quiz (Prelims + Finals)
IIT Kharagpur Quiz Club
 
How payment terms are configured in Odoo 18
How payment terms are configured in Odoo 18
Celine George
 
M&A5 Q1 1 differentiate evolving early Philippine conventional and contempora...
M&A5 Q1 1 differentiate evolving early Philippine conventional and contempora...
ErlizaRosete
 
A Visual Introduction to the Prophet Jeremiah
A Visual Introduction to the Prophet Jeremiah
Steve Thomason
 
Peer Teaching Observations During School Internship
Peer Teaching Observations During School Internship
AjayaMohanty7
 
INDUCTIVE EFFECT slide for first prof pharamacy students
INDUCTIVE EFFECT slide for first prof pharamacy students
SHABNAM FAIZ
 
How to Customize Quotation Layouts in Odoo 18
How to Customize Quotation Layouts in Odoo 18
Celine George
 
Aprendendo Arquitetura Framework Salesforce - Dia 02
Aprendendo Arquitetura Framework Salesforce - Dia 02
Mauricio Alexandre Silva
 
Birnagar High School Platinum Jubilee Quiz.pptx
Birnagar High School Platinum Jubilee Quiz.pptx
Sourav Kr Podder
 
SCHIZOPHRENIA OTHER PSYCHOTIC DISORDER LIKE Persistent delusion/Capgras syndr...
SCHIZOPHRENIA OTHER PSYCHOTIC DISORDER LIKE Persistent delusion/Capgras syndr...
parmarjuli1412
 
Pests of Maize: An comprehensive overview.pptx
Pests of Maize: An comprehensive overview.pptx
Arshad Shaikh
 
Public Health For The 21st Century 1st Edition Judy Orme Jane Powell
Public Health For The 21st Century 1st Edition Judy Orme Jane Powell
trjnesjnqg7801
 
University of Ghana Cracks Down on Misconduct: Over 100 Students Sanctioned
University of Ghana Cracks Down on Misconduct: Over 100 Students Sanctioned
Kweku Zurek
 
List View Components in Odoo 18 - Odoo Slides
List View Components in Odoo 18 - Odoo Slides
Celine George
 
HistoPathology Ppt. Arshita Gupta for Diploma
HistoPathology Ppt. Arshita Gupta for Diploma
arshitagupta674
 
Filipino 9 Maikling Kwento Ang Ama Panitikang Asiyano
Filipino 9 Maikling Kwento Ang Ama Panitikang Asiyano
sumadsadjelly121997
 
GREAT QUIZ EXCHANGE 2025 - GENERAL QUIZ.pptx
GREAT QUIZ EXCHANGE 2025 - GENERAL QUIZ.pptx
Ronisha Das
 
LDMMIA Shop & Student News Summer Solstice 25
LDMMIA Shop & Student News Summer Solstice 25
LDM & Mia eStudios
 
Code Profiling in Odoo 18 - Odoo 18 Slides
Code Profiling in Odoo 18 - Odoo 18 Slides
Celine George
 
Tanja Vujicic - PISA for Schools contact Info
Tanja Vujicic - PISA for Schools contact Info
EduSkills OECD
 
IIT KGP Quiz Week 2024 Sports Quiz (Prelims + Finals)
IIT KGP Quiz Week 2024 Sports Quiz (Prelims + Finals)
IIT Kharagpur Quiz Club
 
How payment terms are configured in Odoo 18
How payment terms are configured in Odoo 18
Celine George
 
M&A5 Q1 1 differentiate evolving early Philippine conventional and contempora...
M&A5 Q1 1 differentiate evolving early Philippine conventional and contempora...
ErlizaRosete
 
A Visual Introduction to the Prophet Jeremiah
A Visual Introduction to the Prophet Jeremiah
Steve Thomason
 
Peer Teaching Observations During School Internship
Peer Teaching Observations During School Internship
AjayaMohanty7
 
INDUCTIVE EFFECT slide for first prof pharamacy students
INDUCTIVE EFFECT slide for first prof pharamacy students
SHABNAM FAIZ
 
How to Customize Quotation Layouts in Odoo 18
How to Customize Quotation Layouts in Odoo 18
Celine George
 
Aprendendo Arquitetura Framework Salesforce - Dia 02
Aprendendo Arquitetura Framework Salesforce - Dia 02
Mauricio Alexandre Silva
 
Birnagar High School Platinum Jubilee Quiz.pptx
Birnagar High School Platinum Jubilee Quiz.pptx
Sourav Kr Podder
 
SCHIZOPHRENIA OTHER PSYCHOTIC DISORDER LIKE Persistent delusion/Capgras syndr...
SCHIZOPHRENIA OTHER PSYCHOTIC DISORDER LIKE Persistent delusion/Capgras syndr...
parmarjuli1412
 
Pests of Maize: An comprehensive overview.pptx
Pests of Maize: An comprehensive overview.pptx
Arshad Shaikh
 

Unit I Advanced Java Programming Course

  • 1. Dr. S.SHAIK PARVEEN Department of Computer Science
  • 2. CLASS DETAILS  Academic Year 2021-2022  I M.Sc.(CS)  II Semester  Batch 2020-2022  Course Coordinator: Dr. S.SHAIK PARVEEN
  • 3.  Course Name: Advanced Java Programming  Course Code : 20PCSC21  Semester : II Part III : Core COURSE INFORMATION
  • 4. COURSE PREREQUISITES  basic understanding of the Java language  a basic understanding of software development  a basic understanding of the software development life cycle 4 Course Co-requisites  Good understanding of programming and OOPs concepts.
  • 5. COURSE OBJECTIVES:  To learn how to use Core Java Technologies.  To implement OOP Concept.  To get knowledge in Classes, Fundamentals, Methods, Constructors and Garbage  To analyze the current Thread and Synchronization  To cover Applet, AWT Controls, Swing and Java Beans.
  • 6. UNIT I JAVA - GENERAL  Java is:  platform independent programming language  similar to C++ in syntax  similar to Smalltalk in mental paradigm  Pros: also ubiquitous to net  Cons: interpreted, and still under development (moving target)
  • 7. JAVA - GENERAL  Java has some interesting features:  automatic type checking,  automatic garbage collection,  simplifies pointers; no directly accessible pointer to memory,  simplified network access,  multi-threading!
  • 8. Compile-time Environment Compile-time Environment Java Bytecodes move locally or through network Java Source (.java) Java Compiler Java Bytecode (.class ) Java Interpreter Just in Time Compiler Runtime System Class Loader Bytecode Verifier Java Class Libraries Operating System Hardware Java Virtual machine HOW IT WORKS…!
  • 9. HOW IT WORKS…!  Java is independent only for one reason:  Only depends on the Java Virtual Machine (JVM),  code is compiled to bytecode, which is interpreted by the resident JVM,  JIT (just in time) compilers attempt to increase speed.
  • 10. JAVA - SECURITY  Pointer denial - reduces chances of virulent programs corrupting host,  Applets even more restricted -  May not  run local executables,  Read or write to local file system,  Communicate with any server other than the originating server.
  • 11. OBJECT-ORIENTED  Java supports OOD  Polymorphism  Inheritance  Encapsulation  Java programs contain nothing but definitions and instantiations of classes  Everything is encapsulated in a class!
  • 12. JAVA ADVANTAGES  Portable - Write Once, Run Anywhere  Security has been well thought through  Robust memory management  Designed for network programming  Multi-threaded (multiple simultaneous tasks)  Dynamic & extensible (loads of libraries)  Classes stored in separate files  Loaded only when needed
  • 14. PRIMITIVE TYPES AND VARIABLES  boolean, char, byte, short, int, long, float, double etc.  These basic (or primitive) types are the only types that are not objects (due to performance issues).  This means that you don’t use the new operator to create a primitive variable.  Declaring primitive variables: float initVal; int retVal, index = 2; double gamma = 1.2, brightness boolean valueOk = false;
  • 15. INITIALISATION  If no value is assigned prior to use, then the compiler will give an error  Java sets primitive variables to zero or false in the case of a boolean variable  All object references are initially set to null  An array of anything is an object  Set to null on declaration  Elements to zero false or null on creation
  • 16. DECLARATIONS int index = 1.2; // compiler error boolean retOk = 1; // compiler error double fiveFourths = 5 / 4; // no error! float ratio = 5.8f; // correct double fiveFourths = 5.0 / 4.0; // correct  1.2f is a float value accurate to 7 decimal places.  1.2 is a double value accurate to 15 decimal places.
  • 17. ASSIGNMENT  All Java assignments are right associative int a = 1, b = 2, c = 5 a = b = c System.out.print( “a= “ + a + “b= “ + b + “c= “ + c)  What is the value of a, b & c  Done right to left: a = (b = c);
  • 18. CASTING  Casting is the temporary conversion of a variable from its original data type to some other data type.  Like being cast for a part in a play or movie  With primitive data types if a cast is necessary from a less inclusive data type to a more inclusive data type it is done automatically. int x = 5; double a = 3.5; double b = a * x + a / x; double c = x / 2;  if a cast is necessary from a more inclusive to a less inclusive data type the class must be done explicitly by the programmer  failure to do so results in a compile error. double a = 3.5, b = 2.7; int y = (int) a / (int) b; y = (int)( a / b ); y = (int) a / b; //syntax error
  • 19. PRIMITIVE CASTING double float long int short, char byte Outer ring is most inclusive data type. Inner ring is least inclusive. In expressions variables and sub expressions of less inclusive data types are automatically cast to more inclusive. If trying to place expression that is more inclusive into variable that is less inclusive, explicit cast must be performed. From MORE to LESS
  • 20. BASIC MATHEMATICAL OPERATORS  * / % + - are the mathematical operators  * / % have a higher precedence than + or - double myVal = a + b % d – c * d / b;  Is the same as: double myVal = (a + (b % d)) – ((c * d) / b);
  • 21. STATEMENTS & BLOCKS  A simple statement is a command terminated by a semi-colon: name = “Fred”;  A block is a compound statement enclosed in curly brackets: { name1 = “Fred”; name2 = “Bill”; }  Blocks may contain other blocks
  • 22. FLOW OF CONTROL  Java executes one statement after the other in the order they are written  Many Java statements are flow control statements: Alternation: if, if else, switch Looping: for, while, do while Escapes: break, continue, return
  • 23. IF – THE CONDITIONAL STATEMENT  The if statement evaluates an expression and if that evaluation is true then the specified action is taken if ( x < 10 ) x = 10;  If the value of x is less than 10, make x equal to 10  It could have been written: if ( x < 10 ) x = 10;  Or, alternatively: if ( x < 10 ) { x = 10; }
  • 24. RELATIONAL OPERATORS == Equal (careful) != Not equal >= Greater than or equal <= Less than or equal > Greater than < Less than
  • 25. IF… ELSE  The if … else statement evaluates an expression and performs one action if that evaluation is true or a different action if it is false. if (x != oldx) { System.out.print(“x was changed”); } else { System.out.print(“x is unchanged”); }
  • 26. NESTED IF … ELSE if ( myVal > 100 ) { if ( remainderOn == true) { myVal = mVal % 100; } else { myVal = myVal / 100.0; } } else { System.out.print(“myVal is in range”); }
  • 27. ELSE IF  Useful for choosing between alternatives: if ( n == 1 ) { // execute code block #1 } else if ( j == 2 ) { // execute code block #2 } else { // if all previous tests have failed, execute code block #3 }
  • 28. A WARNING… WRONG! if( i == j ) if ( j == k ) System.out.print ( “i equals k”); else System.out.print( “i is not equal to j”); CORRECT! if( i == j ) { if ( j == k ) System.out.print( “i equals k”); } else System.out.print(“ i is not equal to j”); // Correct!
  • 29. THE SWITCH STATEMENT switch ( n ) { case 1: // execute code block #1 break; case 2: // execute code block #2 break; default: // if all previous tests fail then //execute code block #4 break; }
  • 30. THE FOR LOOP  Loop n times for ( i = 0; i < n; n++ ) { // this code body will execute n times // ifrom 0 to n-1 }  Nested for: for ( j = 0; j < 10; j++ ) { for ( i = 0; i < 20; i++ ){ // this code body will execute 200 times } }
  • 31. WHILE LOOPS while(response == 1) { System.out.print( “ID =” + userID[n]); n++; response = readInt( “Enter “); } What is the minimum number of times the loop is executed? What is the maximum number of times?
  • 32. DO {… } WHILE LOOPS do { System.out.print( “ID =” + userID[n] ); n++; response = readInt( “Enter ” ); }while (response == 1); What is the minimum number of times the loop is executed? What is the maximum number of times?
  • 33. BREAK  A break statement causes an exit from the innermost containing while, do, for or switch statement. for ( int i = 0; i < maxID, i++ ) { if ( userID[i] == targetID ) { index = i; break; } } // program jumps here after break
  • 34. CONTINUE  Can only be used with while, do or for.  The continue statement causes the innermost loop to start the next iteration immediately for ( int i = 0; i < maxID; i++ ) { if ( userID[i] != -1 ) continue; System.out.print( “UserID ” + i + “ :” + userID); }
  • 35. ARRAYS  Am array is a list of similar things  An array has a fixed:  name  type  length  These must be declared when the array is created.  Arrays sizes cannot be changed during the execution of the code
  • 36. myArray has room for 8 elements  the elements are accessed by their index  in Java, array indices start at 0 3 6 3 1 6 3 4 1 myArray = 0 1 2 3 4 5 6 7
  • 37. DECLARING ARRAYS int myArray[]; declares myArray to be an array of integers myArray = new int[8]; sets up 8 integer-sized spaces in memory, labelled myArray[0] to myArray[7] int myArray[] = new int[8]; combines the two statements in one line
  • 38. ASSIGNING VALUES  refer to the array elements by index to store values in them. myArray[0] = 3; myArray[1] = 6; myArray[2] = 3; ...  can create and initialise in one step: int myArray[] = {3, 6, 3, 1, 6, 3, 4, 1};
  • 39. ITERATING THROUGH ARRAYS  for loops are useful when dealing with arrays: for (int i = 0; i < myArray.length; i++) { myArray[i] = getsomevalue(); }
  • 40. ARRAYS OF OBJECTS  So far we have looked at an array of primitive types.  integers  could also use doubles, floats, characters…  Often want to have an array of objects  Students, Books, Loans ……  Need to follow 3 steps.
  • 41. DECLARING THE ARRAY 1. Declare the array private Student studentList[];  this declares studentList 2 .Create the array studentList = new Student[10];  this sets up 10 spaces in memory that can hold references to Student objects 3. Create Student objects and add them to the array: studentList[0] = new Student("Cathy", "Computing");