SlideShare a Scribd company logo
Diploma in Information Technology
Module VIII: Programming with Java
Rasan Samarasinghe
ESOFT Computer Studies (pvt) Ltd.
No 68/1, Main Street, Pallegama, Embilipitiya.
Contents
1. Introduction to Java
2. Features of Java
3. What you can create by Java?
4. Start Java Programming
5. Creating First Java Program
6. Java Virtual Machine
7. Basic Rules to Remember
8. Keywords in Java
9. Comments in Java Programs
10. Printing Statements
11. Primitive Data Types in Java
12. Arithmetic Operators
13. Assignment Operators
14. Comparison Operators
15. Logical Operators
16. If Statement
17. If… Else Statement
18. If… Else if… Else Statement
19. Nested If Statement
20. While Loop
21. Do While Loop
22. For Loop
23. Reading User Input
24. Arrays
25. Two Dimensional Arrays
26. Objects and Classes
27. Java Classes
28. Java Objects
29. Methods with Return Value
30. Methods without Return Value
31. Method Overloading
32. Variable Types
33. Inheritance
34. Method Overriding
35. Access Modifiers
36. Packages
37. GUI Applications in Java
38. Java Applets
Introduction to Java
• Developed by Sun Microsystems (has merged
into Oracle Corporation later)
• Initiated by James Gosling
• Released in 1995
• Java has 3 main versions as Java SE, Java EE
and Java ME
Features of Java
 Object Oriented
 Platform independent
 Simple
 Secure
 Portable
 Robust
 Multi-threaded
 Interpreted
 High Performance
What you can create by Java?
• Desktop (GUI) applications
• Enterprise level applications
• Web applications
• Web services
• Java Applets
• Mobile applications
Start Java Programming
What you need to program in Java?
Java Development Kit (JDK)
Microsoft Notepad or any other text editor
Command Prompt
Creating First Java Program
public class MyFirstApp{
public static void main(String[] args){
System.out.println("Hello World");
}
}
MyFirstApp.java
Java Virtual Machine (JVM)
Java Virtual Machine (JVM)
1. When Java source code (.java files) is
compiled, it is translated into Java bytecodes
and then placed into (.class) files.
2. The JVM executes Java bytecodes and run
the program.
Java was designed with a concept of write once and
run anywhere. Java Virtual Machine plays the
central role in this concept.
Basic Rules to Remember
Java is case sensitive…
Hello not equals to hello
Basic Rules to Remember
Class name should be a single word and it
cannot contain symbols and should be started
with a character…
Wrong class name Correct way
Hello World HelloWorld
Java Window Java_Window
3DUnit Unit3D
“FillForm” FillForm
public class MyFirstApp{
public static void main(String[] args){
System.out.println("Hello World");
}
}
Basic Rules to Remember
Name of the program file should exactly match
the class name...
Save as MyFirstApp.java
Basic Rules to Remember
Main method which is a mandatory part of
every java program…
public class MyFirstApp{
public static void main(String[] args){
System.out.println("Hello World");
}
}
Basic Rules to Remember
Tokens must be separated by Whitespaces
Except ( ) ; { } . [ ] + - * /
public class MyFirstApp{
public static void main(String[] args){
System.out.println("Hello World");
}
}
Keywords in Java
Comments in Java Programs
Comments for single line
// this is a single line comment
For multiline
/*
this is
a multiline
comment
*/
Printing Statements
System.out.print(“your text”); //prints text
System.out.println(“your text”); //prints text
and create a new line
System.out.print(“line onen line two”);//prints
text in two lines
Primitive Data Types in Java
Keyword Type of data the variable will store Size in memory
boolean true/false value 1 bit
byte byte size integer 8 bits
char a single character 16 bits
double double precision floating point decimal number 64 bits
float single precision floating point decimal number 32 bits
int a whole number 32 bits
long a whole number (used for long numbers) 64 bits
short a whole number (used for short numbers) 16 bits
Variable Declaration in Java
Variable declaration
type variable_list;
Variable declaration and initialization
type variable_name = value;
Variable Declaration in Java
int a, b, c; // declares three ints, a, b, and c.
int d = 3, e, f = 5; // declares three more ints,
initializing d and f.
byte z = 22; // initializes z.
double pi = 3.14159; // declares an approximation
of pi.
char x = 'x'; // the variable x has the value 'x'.
Arithmetic Operators
Operator Description Example
+ Addition A + B will give 30
- Subtraction A - B will give -10
* Multiplication A * B will give 200
/ Division B / A will give 2
% Modulus B % A will give 0
++ Increment B++ gives 21
-- Decrement B-- gives 19
A = 10, B = 20
Assignment Operators
Operator Example
= C = A + B will assign value of A + B into C
+= C += A is equivalent to C = C + A
-= C -= A is equivalent to C = C - A
*= C *= A is equivalent to C = C * A
/= C /= A is equivalent to C = C / A
%= C %= A is equivalent to C = C % A
Comparison Operators
Operator Example
== (A == B) is false.
!= (A != B) is true.
> (A > B) is false.
< (A < B) is true.
>= (A >= B) is false.
<= (A <= B) is true.
A = 10, B = 20
Logical Operators
Operator Name Example
&& AND (A && B) is False
|| OR (A || B) is True
! NOT !(A && B) is True
A = True, B = False
If Statement
if(Boolean_expression){
//Statements will execute if the Boolean
expression is true
}
If Statement
Boolean
Expression
Statements
True
False
If… Else Statement
if(Boolean_expression){
//Executes when the Boolean expression is
true
}else{
//Executes when the Boolean expression is
false
}
If… Else Statement
Boolean
Expression
Statements
True
False
Statements
If… Else if… Else Statement
if(Boolean_expression 1){
//Executes when the Boolean expression 1 is true
}else if(Boolean_expression 2){
//Executes when the Boolean expression 2 is true
}else if(Boolean_expression 3){
//Executes when the Boolean expression 3 is true
}else {
//Executes when the none of the above condition
is true.
}
If… Else if… Else Statement
Boolean
expression 1
False
Statements
Boolean
expression 2
Boolean
expression 3
Statements
Statements
False
False
Statements
True
True
True
Nested If Statement
if(Boolean_expression 1){
//Executes when the Boolean expression 1 is
true
if(Boolean_expression 2){
//Executes when the Boolean expression 2 is
true
}
}
Nested If Statement
Boolean
Expression 1
True
False
Statements
Boolean
Expression 2
True
False
While Loop
while(Boolean_expression){
//Statements
}
While Loop
Boolean
Expression
Statements
True
False
Do While Loop
do{
//Statements
}while(Boolean_expression);
Do While Loop
Boolean
Expression
Statements
True
False
For Loop
for(initialization; Boolean_expression; update){
//Statements
}
For Loop
Boolean
Expression
Statements
True
False
Update
Initialization
Nested Loop
Boolean
Expression
True
False
Boolean
Expression
Statements
True
False
Reading User Input by the Keyboard
import java.io.*;
public class DemoApp{
public static void main(String [] args) throws IOException{
BufferedReader br = new BufferedReader(new
InputStreamReader(System.in));
System.out.print(“Enter your text: “);
String txt = br.readLine();
System.out.println(“You have entered:” + txt);
}
}
Arrays
10 30 20 50 15 35
0 1 2 3 4 5
Size = 6
Element Index No
An Array can hold many values in a same
data type under a single name
A single dimensional array
Building a Single Dimensional Array
// Creating an Array
DataType[] ArrayName = new DataType[size];
// Assigning values
ArrayName[index] = value;
ArrayName[index] = value;
……..
Building a Single Dimensional Array
char[] letters = new char[4];
letters[0] = ‘a’;
letters[1] = ‘b’;
letters[2] = ‘c’;
letters[3] = ‘d’;
0 1 2 3
a b c d
0 1 2 3
letters
letters
Values in an Array can access
by referring index number
Building a Single Dimensional Array
//using an array initializer
DataType[] ArrayName = {element 1, element 2,
element 3, … element n}
int[] points = {10, 20, 30, 40, 50}; 10 20 30 40
0 1 2 3
points
50
4
Manipulating Arrays
Finding the largest
value of an Array
Sorting an Array
15
50
35
25
10
2
1
5
4
3
1
2
3
4
5
Two Dimensional Arrays
10 20 30
100 200 300
0 1 2
0
1
int[][] abc = new int[2][3];
abc[0][0] = 10;
abc[0][1] = 20;
abc[0][2] = 30;
abc[1][0] = 100;
abc[1][1] = 200;
abc[1][2] = 300;
Rows Columns
Column Index
Row Index
Java Objects and Classes
Java Classes
Method
Dog
name
color
bark()
class Dog{
String name;
String color;
public Dog(){
}
public void bark(){
System.out.println(“dog is barking!”);
}
}
Attributes
Constructor
Java Objects
Dog myPet = new Dog(); //creating an object
//Assigning values to Attributes
myPet.name = “Scooby”;
myPet.color = “Brown”;
//calling method
myPet.bark();
Methods
Method is a group of statements to perform a
specific task.
• Methods with Return Value
• Methods without Return Value
Methods with Return Value
public int num1, int num2){
int result;
if (num1 > num2){
result = num1;
}else{
result = num2;
}
return result;
}
Access modifier
Return type
Method name
parameters
Return value
Method body
Methods without Return Value
public void {
System.out.println(“your text: “ + txt)
}
Access modifier
Void represents no return value
Method name
parameter
Method
body
Method Overloading
public class Car{
public void Drive(){
System.out.println(“Car is driving”);
}
public void Drive(int speed){
System.out.println(“Car is driving in ” + speed +
“kmph”);
}
}
Variable Types
Variables in a Class can be categorize into
three types
1. Local Variables
2. Instance Variables
3. Static/Class Variables
Local Variables
• Declared in methods,
constructors, or blocks.
• Access modifiers cannot
be used.
• Visible only within the
declared method,
constructor or block.
• Should be declared with
an initial value.
public class Vehicle{
int number;
String color;
static String model;
void Drive(){
int speed = 100;
System.out.print(“vehicle
is driving in “ + speed +
“kmph”);
}
}
Instance Variables
• Declared in a class, but
outside a method,
constructor or any block.
• Access modifiers can be
given.
• Can be accessed directly
anywhere in the class.
• Have default values.
• Should be called using an
object reference to access
within static methods and
outside of the class.
public class Vehicle{
int number;
String color;
static String model;
void Drive(){
int speed = 100;
System.out.print(“vehicle
is driving in “ + speed +
“kmph”);
}
}
Static/Class Variables
• Declared with the static
keyword in a class, but
outside a method,
constructor or a block.
• Only one copy for each
class regardless how
many objects created.
• Have default values.
• Can be accessed by
calling with the class
name.
public class Vehicle{
int number;
String color;
static String model;
void Drive(){
int speed = 100;
System.out.print(“vehicle
is driving in “ + speed +
“kmph”);
}
}
Inheritance
class Vehicle{
//attributes and methods
}
class Car extends Vehicle{
//attributes and methods
}
class Van extends Vehicle{
//attributes and methods
}
Vehicle
Car Van
Method Overriding
class Vehicle{
public void drive(){
System.out.println(“Vehicle is driving”);
}
}
class Car extends Vehicle{
public void drive(){
System.out.println(“Car is driving”);
}
}
Access Modifiers
Access
Modifiers
Same
class
Same
package
Sub class
Other
packages
public Y Y Y Y
protected Y Y Y N
No access
modifier
Y Y N N
private Y N N N
Packages
A Package can be defined as a grouping of
related types (classes, interfaces,
enumerations and annotations) providing
access protection and namespace
management.
//At the top of your source code
import <package name>.*;
import <package name>.<class name>;
GUI Applications in Java
• Abstract Window Toolkit
• Frame Class
• Layouts
• Label Class
• TextField Class
• Button Class
• Events
Abstract Window Toolkit
The Abstract Window Toolkit (AWT) is a
package of JDK classes for creating GUI
components such as buttons, menus, and
scrollbars for applets and standalone
applications.
import java.awt.*;
Frame Class
Frame myFrame = new Frame(“My Frame”);
myFrame.setSize(300,200);
myFrame.setVisible(true);
Layouts
myFrame.setLayout(new FlowLayout()); myFrame.setLayout(new GridLayout(2,3));
myFrame.setLayout(null);
Label Class
Label lbl = new Label("Hello World");
lbl.setBounds(120,40,120,25);
myFrame.add(lbl);
TextField Class
TextField txt = new TextField();
txt.setBounds(100,90,120,25);
myFrame.add(txt);
Button Class
Button btn = new Button("OK");
btn.setBounds(120,150,60,25);
myFrame.add(btn);
Events
An event is when something special happens within a
Graphical User Interface.
Things like buttons being clicked, the mouse moving,
text being entered into text fields, the program closing,
etc.. then an event will trigger.
How Events Handling Work?
Java Applets
An applet is a Java program that runs in a Web
browser.
Creating a Java Applet
import java.applet.*;
import java.awt.*;
public class HelloWorldApplet extends Applet {
public void paint (Graphics g) {
g.drawString ("Hello World", 25, 50);
}
}
<applet code="HelloWorldApplet.class" width="320"
height="120"></applet>
Write a Java Applet and
compile it
Embed it in a HTML file
The End
http://twitter.com/rasansmn

More Related Content

PPSX
DISE - Windows Based Application Development in Java
Rasan Samarasinghe
 
PPSX
Esoft Metro Campus - Programming with C++
Rasan Samarasinghe
 
PPSX
DIWE - Fundamentals of PHP
Rasan Samarasinghe
 
PPSX
Esoft Metro Campus - Certificate in java basics
Rasan Samarasinghe
 
PPSX
Esoft Metro Campus - Certificate in c / c++ programming
Rasan Samarasinghe
 
PPSX
DIWE - Advanced PHP Concepts
Rasan Samarasinghe
 
PPSX
DITEC - Programming with C#.NET
Rasan Samarasinghe
 
PPSX
DISE - Windows Based Application Development in C#
Rasan Samarasinghe
 
DISE - Windows Based Application Development in Java
Rasan Samarasinghe
 
Esoft Metro Campus - Programming with C++
Rasan Samarasinghe
 
DIWE - Fundamentals of PHP
Rasan Samarasinghe
 
Esoft Metro Campus - Certificate in java basics
Rasan Samarasinghe
 
Esoft Metro Campus - Certificate in c / c++ programming
Rasan Samarasinghe
 
DIWE - Advanced PHP Concepts
Rasan Samarasinghe
 
DITEC - Programming with C#.NET
Rasan Samarasinghe
 
DISE - Windows Based Application Development in C#
Rasan Samarasinghe
 

What's hot (20)

PPTX
Welcome to python workshop
Mukul Kirti Verma
 
PDF
Python revision tour i
Mr. Vikram Singh Slathia
 
PPSX
Programming with Python
Rasan Samarasinghe
 
PPTX
Python The basics
Bobby Murugesan
 
PDF
Python revision tour II
Mr. Vikram Singh Slathia
 
PDF
Javaz. Functional design in Java 8.
Vadim Dubs
 
PPT
02basics
Waheed Warraich
 
PPT
M C6java2
mbruggen
 
PPTX
Python programming
Ashwin Kumar Ramasamy
 
PPT
M C6java3
mbruggen
 
PPTX
03 and 04 .Operators, Expressions, working with the console and conditional s...
Intro C# Book
 
PPT
M C6java7
mbruggen
 
PPTX
Programming in C sesion 2
Prerna Sharma
 
PDF
Programming in C Session 1
Prerna Sharma
 
PDF
The Swift Compiler and Standard Library
Santosh Rajan
 
PPT
The Java Script Programming Language
zone
 
PPT
The JavaScript Programming Language
Raghavan Mohan
 
PDF
2 kotlin vs. java: what java has that kotlin does not
Sergey Bandysik
 
PPT
Javascript
vikram singh
 
PDF
Python unit 2 M.sc cs
KALAISELVI P
 
Welcome to python workshop
Mukul Kirti Verma
 
Python revision tour i
Mr. Vikram Singh Slathia
 
Programming with Python
Rasan Samarasinghe
 
Python The basics
Bobby Murugesan
 
Python revision tour II
Mr. Vikram Singh Slathia
 
Javaz. Functional design in Java 8.
Vadim Dubs
 
02basics
Waheed Warraich
 
M C6java2
mbruggen
 
Python programming
Ashwin Kumar Ramasamy
 
M C6java3
mbruggen
 
03 and 04 .Operators, Expressions, working with the console and conditional s...
Intro C# Book
 
M C6java7
mbruggen
 
Programming in C sesion 2
Prerna Sharma
 
Programming in C Session 1
Prerna Sharma
 
The Swift Compiler and Standard Library
Santosh Rajan
 
The Java Script Programming Language
zone
 
The JavaScript Programming Language
Raghavan Mohan
 
2 kotlin vs. java: what java has that kotlin does not
Sergey Bandysik
 
Javascript
vikram singh
 
Python unit 2 M.sc cs
KALAISELVI P
 
Ad

Viewers also liked (20)

PPSX
DITEC - E-Commerce & ASP.NET
Rasan Samarasinghe
 
PPSX
DITEC - Software Engineering
Rasan Samarasinghe
 
PPSX
DISE - Introduction to Software Engineering
Rasan Samarasinghe
 
PPSX
DIWE - Introduction to Web Technologies
Rasan Samarasinghe
 
PPSX
DITEC - Expose yourself to Internet & E-mail (second update)
Rasan Samarasinghe
 
PPSX
DITEC - Expose yourself to Internet & E-mail (updated)
Rasan Samarasinghe
 
PPSX
DITEC - Expose yourself to Internet & E-mail
Rasan Samarasinghe
 
PDF
SeminaronEmpoweringSMEsThroughICTIntervention (1)
Sainath P
 
PDF
Java book for beginners_first chapter
Aamir Mojeeb
 
PPTX
Drawing 1 Module
Fredrik Simons
 
PPTX
Network
Rachel Espino
 
PPSX
DISE - Programming Concepts
Rasan Samarasinghe
 
PPSX
DISE - OOAD Using UML
Rasan Samarasinghe
 
PPT
Basic Elements of Java
Prof. Erwin Globio
 
PPSX
DISE - Database Concepts
Rasan Samarasinghe
 
PPTX
1.3 computer system devices&peripherals
Frya Lora
 
PPTX
Monitoring web application response times, a new approach
Mark Friedman
 
PPTX
ASP.NET Presentation
Rasel Khan
 
PPSX
DITEC - Fundamentals in Networking
Rasan Samarasinghe
 
PPSX
DISE - Software Testing and Quality Management
Rasan Samarasinghe
 
DITEC - E-Commerce & ASP.NET
Rasan Samarasinghe
 
DITEC - Software Engineering
Rasan Samarasinghe
 
DISE - Introduction to Software Engineering
Rasan Samarasinghe
 
DIWE - Introduction to Web Technologies
Rasan Samarasinghe
 
DITEC - Expose yourself to Internet & E-mail (second update)
Rasan Samarasinghe
 
DITEC - Expose yourself to Internet & E-mail (updated)
Rasan Samarasinghe
 
DITEC - Expose yourself to Internet & E-mail
Rasan Samarasinghe
 
SeminaronEmpoweringSMEsThroughICTIntervention (1)
Sainath P
 
Java book for beginners_first chapter
Aamir Mojeeb
 
Drawing 1 Module
Fredrik Simons
 
Network
Rachel Espino
 
DISE - Programming Concepts
Rasan Samarasinghe
 
DISE - OOAD Using UML
Rasan Samarasinghe
 
Basic Elements of Java
Prof. Erwin Globio
 
DISE - Database Concepts
Rasan Samarasinghe
 
1.3 computer system devices&peripherals
Frya Lora
 
Monitoring web application response times, a new approach
Mark Friedman
 
ASP.NET Presentation
Rasel Khan
 
DITEC - Fundamentals in Networking
Rasan Samarasinghe
 
DISE - Software Testing and Quality Management
Rasan Samarasinghe
 
Ad

Similar to DITEC - Programming with Java (20)

PPT
Java Tutorial
Vijay A Raj
 
PPT
Java tut1
Ajmal Khan
 
PPT
Tutorial java
Abdul Aziz
 
PPT
Java Tut1
guest5c8bd1
 
PPTX
Basic_Java_02.pptx
Kajal Kashyap
 
PPSX
DIWE - Programming with JavaScript
Rasan Samarasinghe
 
PPT
Java tutorial PPT
Intelligo Technologies
 
PPT
Java tutorial PPT
Intelligo Technologies
 
PPTX
Introduction to Client-Side Javascript
Julie Iskander
 
PPT
Java teaching ppt for the freshers in colleeg.ppt
vvsofttechsolution
 
PPT
Java_Tutorial_Introduction_to_Core_java.ppt
Govind Samleti
 
PPT
Java Tutorial
ArnaldoCanelas
 
PPT
Java tut1
Sumit Tambe
 
PPT
Javatut1
desaigeeta
 
PPT
Java tut1 Coderdojo Cahersiveen
Graham Royce
 
PPT
Java tut1
Sumit Tambe
 
PPTX
CAP615-Unit1.pptx
SatyajeetGaur3
 
ODP
Synapseindia reviews.odp.
Tarunsingh198
 
PPT
Java Tutorial | My Heart
Bui Kiet
 
Java Tutorial
Vijay A Raj
 
Java tut1
Ajmal Khan
 
Tutorial java
Abdul Aziz
 
Java Tut1
guest5c8bd1
 
Basic_Java_02.pptx
Kajal Kashyap
 
DIWE - Programming with JavaScript
Rasan Samarasinghe
 
Java tutorial PPT
Intelligo Technologies
 
Java tutorial PPT
Intelligo Technologies
 
Introduction to Client-Side Javascript
Julie Iskander
 
Java teaching ppt for the freshers in colleeg.ppt
vvsofttechsolution
 
Java_Tutorial_Introduction_to_Core_java.ppt
Govind Samleti
 
Java Tutorial
ArnaldoCanelas
 
Java tut1
Sumit Tambe
 
Javatut1
desaigeeta
 
Java tut1 Coderdojo Cahersiveen
Graham Royce
 
Java tut1
Sumit Tambe
 
CAP615-Unit1.pptx
SatyajeetGaur3
 
Synapseindia reviews.odp.
Tarunsingh198
 
Java Tutorial | My Heart
Bui Kiet
 

More from Rasan Samarasinghe (14)

PPTX
Managing the under performance in projects.pptx
Rasan Samarasinghe
 
PPTX
Agile project management with scrum
Rasan Samarasinghe
 
PPTX
Introduction to Agile
Rasan Samarasinghe
 
PPSX
IT Introduction (en)
Rasan Samarasinghe
 
PPSX
Application of Unified Modelling Language
Rasan Samarasinghe
 
PPSX
Advanced Web Development in PHP - Understanding REST API
Rasan Samarasinghe
 
PPSX
Advanced Web Development in PHP - Understanding Project Development Methodolo...
Rasan Samarasinghe
 
PPSX
Advanced Web Development in PHP - Code Versioning and Branching with Git
Rasan Samarasinghe
 
PPSX
DIWE - Working with MySQL Databases
Rasan Samarasinghe
 
PPSX
DIWE - Using Extensions and Image Manipulation
Rasan Samarasinghe
 
PPSX
DIWE - File handling with PHP
Rasan Samarasinghe
 
PPSX
DIWE - Coding HTML for Basic Web Designing
Rasan Samarasinghe
 
PPSX
DIWE - Multimedia Technologies
Rasan Samarasinghe
 
PPSX
DISE - Introduction to Project Management
Rasan Samarasinghe
 
Managing the under performance in projects.pptx
Rasan Samarasinghe
 
Agile project management with scrum
Rasan Samarasinghe
 
Introduction to Agile
Rasan Samarasinghe
 
IT Introduction (en)
Rasan Samarasinghe
 
Application of Unified Modelling Language
Rasan Samarasinghe
 
Advanced Web Development in PHP - Understanding REST API
Rasan Samarasinghe
 
Advanced Web Development in PHP - Understanding Project Development Methodolo...
Rasan Samarasinghe
 
Advanced Web Development in PHP - Code Versioning and Branching with Git
Rasan Samarasinghe
 
DIWE - Working with MySQL Databases
Rasan Samarasinghe
 
DIWE - Using Extensions and Image Manipulation
Rasan Samarasinghe
 
DIWE - File handling with PHP
Rasan Samarasinghe
 
DIWE - Coding HTML for Basic Web Designing
Rasan Samarasinghe
 
DIWE - Multimedia Technologies
Rasan Samarasinghe
 
DISE - Introduction to Project Management
Rasan Samarasinghe
 

Recently uploaded (20)

PDF
advancepresentationskillshdhdhhdhdhdhhfhf
jasmenrojas249
 
PDF
Teaching Reproducibility and Embracing Variability: From Floating-Point Exper...
University of Rennes, INSA Rennes, Inria/IRISA, CNRS
 
PDF
Multi-factor Authentication (MFA) requirement for Microsoft 365 Admin Center_...
Q-Advise
 
PDF
How to Seamlessly Integrate Salesforce Data Cloud with Marketing Cloud.pdf
NSIQINFOTECH
 
PPTX
Why Use Open Source Reporting Tools for Business Intelligence.pptx
Varsha Nayak
 
PDF
QAware_Mario-Leander_Reimer_Architecting and Building a K8s-based AI Platform...
QAware GmbH
 
PDF
Become an Agentblazer Champion Challenge
Dele Amefo
 
PDF
Build Multi-agent using Agent Development Kit
FadyIbrahim23
 
PPTX
Presentation about variables and constant.pptx
safalsingh810
 
PDF
What to consider before purchasing Microsoft 365 Business Premium_PDF.pdf
Q-Advise
 
PDF
Community & News Update Q2 Meet Up 2025
VictoriaMetrics
 
PDF
Become an Agentblazer Champion Challenge Kickoff
Dele Amefo
 
PPTX
Presentation of Computer CLASS 2 .pptx
darshilchaudhary558
 
PDF
Jenkins: An open-source automation server powering CI/CD Automation
SaikatBasu37
 
PDF
PFAS Reporting Requirements 2026 Are You Submission Ready Certivo.pdf
Certivo Inc
 
PDF
Microsoft Teams Essentials; The pricing and the versions_PDF.pdf
Q-Advise
 
PPTX
PFAS Reporting Requirements 2026 Are You Submission Ready Certivo.pptx
Certivo Inc
 
PPTX
Web Testing.pptx528278vshbuqffqhhqiwnwuq
studylike474
 
PPTX
ConcordeApp: Engineering Global Impact & Unlocking Billions in Event ROI with AI
chastechaste14
 
PPT
Activate_Methodology_Summary presentatio
annapureddyn
 
advancepresentationskillshdhdhhdhdhdhhfhf
jasmenrojas249
 
Teaching Reproducibility and Embracing Variability: From Floating-Point Exper...
University of Rennes, INSA Rennes, Inria/IRISA, CNRS
 
Multi-factor Authentication (MFA) requirement for Microsoft 365 Admin Center_...
Q-Advise
 
How to Seamlessly Integrate Salesforce Data Cloud with Marketing Cloud.pdf
NSIQINFOTECH
 
Why Use Open Source Reporting Tools for Business Intelligence.pptx
Varsha Nayak
 
QAware_Mario-Leander_Reimer_Architecting and Building a K8s-based AI Platform...
QAware GmbH
 
Become an Agentblazer Champion Challenge
Dele Amefo
 
Build Multi-agent using Agent Development Kit
FadyIbrahim23
 
Presentation about variables and constant.pptx
safalsingh810
 
What to consider before purchasing Microsoft 365 Business Premium_PDF.pdf
Q-Advise
 
Community & News Update Q2 Meet Up 2025
VictoriaMetrics
 
Become an Agentblazer Champion Challenge Kickoff
Dele Amefo
 
Presentation of Computer CLASS 2 .pptx
darshilchaudhary558
 
Jenkins: An open-source automation server powering CI/CD Automation
SaikatBasu37
 
PFAS Reporting Requirements 2026 Are You Submission Ready Certivo.pdf
Certivo Inc
 
Microsoft Teams Essentials; The pricing and the versions_PDF.pdf
Q-Advise
 
PFAS Reporting Requirements 2026 Are You Submission Ready Certivo.pptx
Certivo Inc
 
Web Testing.pptx528278vshbuqffqhhqiwnwuq
studylike474
 
ConcordeApp: Engineering Global Impact & Unlocking Billions in Event ROI with AI
chastechaste14
 
Activate_Methodology_Summary presentatio
annapureddyn
 

DITEC - Programming with Java

  • 1. Diploma in Information Technology Module VIII: Programming with Java Rasan Samarasinghe ESOFT Computer Studies (pvt) Ltd. No 68/1, Main Street, Pallegama, Embilipitiya.
  • 2. Contents 1. Introduction to Java 2. Features of Java 3. What you can create by Java? 4. Start Java Programming 5. Creating First Java Program 6. Java Virtual Machine 7. Basic Rules to Remember 8. Keywords in Java 9. Comments in Java Programs 10. Printing Statements 11. Primitive Data Types in Java 12. Arithmetic Operators 13. Assignment Operators 14. Comparison Operators 15. Logical Operators 16. If Statement 17. If… Else Statement 18. If… Else if… Else Statement 19. Nested If Statement 20. While Loop 21. Do While Loop 22. For Loop 23. Reading User Input 24. Arrays 25. Two Dimensional Arrays 26. Objects and Classes 27. Java Classes 28. Java Objects 29. Methods with Return Value 30. Methods without Return Value 31. Method Overloading 32. Variable Types 33. Inheritance 34. Method Overriding 35. Access Modifiers 36. Packages 37. GUI Applications in Java 38. Java Applets
  • 3. Introduction to Java • Developed by Sun Microsystems (has merged into Oracle Corporation later) • Initiated by James Gosling • Released in 1995 • Java has 3 main versions as Java SE, Java EE and Java ME
  • 4. Features of Java  Object Oriented  Platform independent  Simple  Secure  Portable  Robust  Multi-threaded  Interpreted  High Performance
  • 5. What you can create by Java? • Desktop (GUI) applications • Enterprise level applications • Web applications • Web services • Java Applets • Mobile applications
  • 6. Start Java Programming What you need to program in Java? Java Development Kit (JDK) Microsoft Notepad or any other text editor Command Prompt
  • 7. Creating First Java Program public class MyFirstApp{ public static void main(String[] args){ System.out.println("Hello World"); } } MyFirstApp.java
  • 9. Java Virtual Machine (JVM) 1. When Java source code (.java files) is compiled, it is translated into Java bytecodes and then placed into (.class) files. 2. The JVM executes Java bytecodes and run the program. Java was designed with a concept of write once and run anywhere. Java Virtual Machine plays the central role in this concept.
  • 10. Basic Rules to Remember Java is case sensitive… Hello not equals to hello
  • 11. Basic Rules to Remember Class name should be a single word and it cannot contain symbols and should be started with a character… Wrong class name Correct way Hello World HelloWorld Java Window Java_Window 3DUnit Unit3D “FillForm” FillForm
  • 12. public class MyFirstApp{ public static void main(String[] args){ System.out.println("Hello World"); } } Basic Rules to Remember Name of the program file should exactly match the class name... Save as MyFirstApp.java
  • 13. Basic Rules to Remember Main method which is a mandatory part of every java program… public class MyFirstApp{ public static void main(String[] args){ System.out.println("Hello World"); } }
  • 14. Basic Rules to Remember Tokens must be separated by Whitespaces Except ( ) ; { } . [ ] + - * / public class MyFirstApp{ public static void main(String[] args){ System.out.println("Hello World"); } }
  • 16. Comments in Java Programs Comments for single line // this is a single line comment For multiline /* this is a multiline comment */
  • 17. Printing Statements System.out.print(“your text”); //prints text System.out.println(“your text”); //prints text and create a new line System.out.print(“line onen line two”);//prints text in two lines
  • 18. Primitive Data Types in Java Keyword Type of data the variable will store Size in memory boolean true/false value 1 bit byte byte size integer 8 bits char a single character 16 bits double double precision floating point decimal number 64 bits float single precision floating point decimal number 32 bits int a whole number 32 bits long a whole number (used for long numbers) 64 bits short a whole number (used for short numbers) 16 bits
  • 19. Variable Declaration in Java Variable declaration type variable_list; Variable declaration and initialization type variable_name = value;
  • 20. Variable Declaration in Java int a, b, c; // declares three ints, a, b, and c. int d = 3, e, f = 5; // declares three more ints, initializing d and f. byte z = 22; // initializes z. double pi = 3.14159; // declares an approximation of pi. char x = 'x'; // the variable x has the value 'x'.
  • 21. Arithmetic Operators Operator Description Example + Addition A + B will give 30 - Subtraction A - B will give -10 * Multiplication A * B will give 200 / Division B / A will give 2 % Modulus B % A will give 0 ++ Increment B++ gives 21 -- Decrement B-- gives 19 A = 10, B = 20
  • 22. Assignment Operators Operator Example = C = A + B will assign value of A + B into C += C += A is equivalent to C = C + A -= C -= A is equivalent to C = C - A *= C *= A is equivalent to C = C * A /= C /= A is equivalent to C = C / A %= C %= A is equivalent to C = C % A
  • 23. Comparison Operators Operator Example == (A == B) is false. != (A != B) is true. > (A > B) is false. < (A < B) is true. >= (A >= B) is false. <= (A <= B) is true. A = 10, B = 20
  • 24. Logical Operators Operator Name Example && AND (A && B) is False || OR (A || B) is True ! NOT !(A && B) is True A = True, B = False
  • 25. If Statement if(Boolean_expression){ //Statements will execute if the Boolean expression is true }
  • 27. If… Else Statement if(Boolean_expression){ //Executes when the Boolean expression is true }else{ //Executes when the Boolean expression is false }
  • 29. If… Else if… Else Statement if(Boolean_expression 1){ //Executes when the Boolean expression 1 is true }else if(Boolean_expression 2){ //Executes when the Boolean expression 2 is true }else if(Boolean_expression 3){ //Executes when the Boolean expression 3 is true }else { //Executes when the none of the above condition is true. }
  • 30. If… Else if… Else Statement Boolean expression 1 False Statements Boolean expression 2 Boolean expression 3 Statements Statements False False Statements True True True
  • 31. Nested If Statement if(Boolean_expression 1){ //Executes when the Boolean expression 1 is true if(Boolean_expression 2){ //Executes when the Boolean expression 2 is true } }
  • 32. Nested If Statement Boolean Expression 1 True False Statements Boolean Expression 2 True False
  • 40. Reading User Input by the Keyboard import java.io.*; public class DemoApp{ public static void main(String [] args) throws IOException{ BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); System.out.print(“Enter your text: “); String txt = br.readLine(); System.out.println(“You have entered:” + txt); } }
  • 41. Arrays 10 30 20 50 15 35 0 1 2 3 4 5 Size = 6 Element Index No An Array can hold many values in a same data type under a single name A single dimensional array
  • 42. Building a Single Dimensional Array // Creating an Array DataType[] ArrayName = new DataType[size]; // Assigning values ArrayName[index] = value; ArrayName[index] = value; ……..
  • 43. Building a Single Dimensional Array char[] letters = new char[4]; letters[0] = ‘a’; letters[1] = ‘b’; letters[2] = ‘c’; letters[3] = ‘d’; 0 1 2 3 a b c d 0 1 2 3 letters letters Values in an Array can access by referring index number
  • 44. Building a Single Dimensional Array //using an array initializer DataType[] ArrayName = {element 1, element 2, element 3, … element n} int[] points = {10, 20, 30, 40, 50}; 10 20 30 40 0 1 2 3 points 50 4
  • 45. Manipulating Arrays Finding the largest value of an Array Sorting an Array 15 50 35 25 10 2 1 5 4 3 1 2 3 4 5
  • 46. Two Dimensional Arrays 10 20 30 100 200 300 0 1 2 0 1 int[][] abc = new int[2][3]; abc[0][0] = 10; abc[0][1] = 20; abc[0][2] = 30; abc[1][0] = 100; abc[1][1] = 200; abc[1][2] = 300; Rows Columns Column Index Row Index
  • 47. Java Objects and Classes
  • 48. Java Classes Method Dog name color bark() class Dog{ String name; String color; public Dog(){ } public void bark(){ System.out.println(“dog is barking!”); } } Attributes Constructor
  • 49. Java Objects Dog myPet = new Dog(); //creating an object //Assigning values to Attributes myPet.name = “Scooby”; myPet.color = “Brown”; //calling method myPet.bark();
  • 50. Methods Method is a group of statements to perform a specific task. • Methods with Return Value • Methods without Return Value
  • 51. Methods with Return Value public int num1, int num2){ int result; if (num1 > num2){ result = num1; }else{ result = num2; } return result; } Access modifier Return type Method name parameters Return value Method body
  • 52. Methods without Return Value public void { System.out.println(“your text: “ + txt) } Access modifier Void represents no return value Method name parameter Method body
  • 53. Method Overloading public class Car{ public void Drive(){ System.out.println(“Car is driving”); } public void Drive(int speed){ System.out.println(“Car is driving in ” + speed + “kmph”); } }
  • 54. Variable Types Variables in a Class can be categorize into three types 1. Local Variables 2. Instance Variables 3. Static/Class Variables
  • 55. Local Variables • Declared in methods, constructors, or blocks. • Access modifiers cannot be used. • Visible only within the declared method, constructor or block. • Should be declared with an initial value. public class Vehicle{ int number; String color; static String model; void Drive(){ int speed = 100; System.out.print(“vehicle is driving in “ + speed + “kmph”); } }
  • 56. Instance Variables • Declared in a class, but outside a method, constructor or any block. • Access modifiers can be given. • Can be accessed directly anywhere in the class. • Have default values. • Should be called using an object reference to access within static methods and outside of the class. public class Vehicle{ int number; String color; static String model; void Drive(){ int speed = 100; System.out.print(“vehicle is driving in “ + speed + “kmph”); } }
  • 57. Static/Class Variables • Declared with the static keyword in a class, but outside a method, constructor or a block. • Only one copy for each class regardless how many objects created. • Have default values. • Can be accessed by calling with the class name. public class Vehicle{ int number; String color; static String model; void Drive(){ int speed = 100; System.out.print(“vehicle is driving in “ + speed + “kmph”); } }
  • 58. Inheritance class Vehicle{ //attributes and methods } class Car extends Vehicle{ //attributes and methods } class Van extends Vehicle{ //attributes and methods } Vehicle Car Van
  • 59. Method Overriding class Vehicle{ public void drive(){ System.out.println(“Vehicle is driving”); } } class Car extends Vehicle{ public void drive(){ System.out.println(“Car is driving”); } }
  • 60. Access Modifiers Access Modifiers Same class Same package Sub class Other packages public Y Y Y Y protected Y Y Y N No access modifier Y Y N N private Y N N N
  • 61. Packages A Package can be defined as a grouping of related types (classes, interfaces, enumerations and annotations) providing access protection and namespace management. //At the top of your source code import <package name>.*; import <package name>.<class name>;
  • 62. GUI Applications in Java • Abstract Window Toolkit • Frame Class • Layouts • Label Class • TextField Class • Button Class • Events
  • 63. Abstract Window Toolkit The Abstract Window Toolkit (AWT) is a package of JDK classes for creating GUI components such as buttons, menus, and scrollbars for applets and standalone applications. import java.awt.*;
  • 64. Frame Class Frame myFrame = new Frame(“My Frame”); myFrame.setSize(300,200); myFrame.setVisible(true);
  • 65. Layouts myFrame.setLayout(new FlowLayout()); myFrame.setLayout(new GridLayout(2,3)); myFrame.setLayout(null);
  • 66. Label Class Label lbl = new Label("Hello World"); lbl.setBounds(120,40,120,25); myFrame.add(lbl);
  • 67. TextField Class TextField txt = new TextField(); txt.setBounds(100,90,120,25); myFrame.add(txt);
  • 68. Button Class Button btn = new Button("OK"); btn.setBounds(120,150,60,25); myFrame.add(btn);
  • 69. Events An event is when something special happens within a Graphical User Interface. Things like buttons being clicked, the mouse moving, text being entered into text fields, the program closing, etc.. then an event will trigger.
  • 71. Java Applets An applet is a Java program that runs in a Web browser.
  • 72. Creating a Java Applet import java.applet.*; import java.awt.*; public class HelloWorldApplet extends Applet { public void paint (Graphics g) { g.drawString ("Hello World", 25, 50); } } <applet code="HelloWorldApplet.class" width="320" height="120"></applet> Write a Java Applet and compile it Embed it in a HTML file

Editor's Notes

  • #21: double avg = 45.6567; System.out.println(String.format("%.2f", avg)); // rounds and limit 2 decimal places
  • #54: Void welcome() ///Hello world ///Void welcome(“saman”) ////Hello Saman