1.1. Chapter-1
1.1. Chapter-1
ANKIT JAIN
COURSE INTRODUCTION
FACULTY INTRODUCTION
Instructor:
• Ankit Jain
• ankit.jain@suas.ac.in
• +91-7709285065
COURSE INTRODUCTION
➢Text Book
• Java Fundamentals A Comprehensive Introduction (Herbert
Scheldt, Dale Skrien).
➢ Reference Book
• Java The Complete Reference (Herbert Schildt).
Allotted
Description
marks
Internal Theory (MST) 50
Internal Practical 40
Term end Theory 50
Term end Practical 40
Skill Assessment 20
TOTAL 200
STUDENT INTRODUCTIONS
• Java is a phenomenon
• Took the world by storm in 1995 when introduced with the HotJava web
Browser
• Quickly integrated with Netscape browser
SOME HISTORY
Java Java
Compiler Interpreter
<file>.java <file>.class
Java
Dis-assembler
PREPARE AND EXECUTE JAVA
Source Computer
Internet
Verification
Your computer
source bytecode
(text) compiler (aka. class file)
JVML
dynamic
loading
verifier
virtual machine
JIT compiled
bytecode code
compiler
interpreter
CPU
THE JIT
• Just-In-Time compiler
• Translates bytecode into machine code at runtime
• 1-time overhead when run initiated
• Performance increase 10-30 times
• Java Is Simple
• Java Is Object-Oriented
• Java Is Distributed
• Java Is Interpreted
• Java Is Robust
• Java Is Secure
• Java Is Architecture-Neutral
• Java Is Portable
• Java's Performance
• Java Is Multithreaded
• Java Is Dynamic
SIMPLE
• BUT
• JIT compilation and HotSpot
• Dynamic compilation of bytecode to native code at runtime to improve performance
• HotSpot optimizes code on the fly based on dynamic execution patterns
• Can sometimes be even faster than compiled C code!
MULTI-THREADED
• Faster Development
• More programmer friendly
• Less error prone
• OOP
• Easier to manage large development projects
• Robust memory system
• No pointer arithmetic and manual memory management. Garbage
collector!
• Libraries
• Re-use of code
FEATURES OF JAVA
• Simple • Portable
• Architecture-neutral
• High-Performance
• Object-Oriented
• Distributed • Robust
• Compiled • Secure
• Interpreted
• Extensible
• Statically Typed
• Multi-Threaded
• Well-Understood
• Garbage Collected
JAVA PLATFORM & VM & DEVICES
APPLICATIONS OF JAVA
Listing 1.1
//This program prints Welcome to Java!
public class Welcome {
public static void main(String[] args) {
System.out.println("Welcome to Java!");
}
}
Welcome
Run
CREATING AND EDITING USING NOTEPAD
Result
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);
TAKING INPUTS
The Scanner class is used to get user input, and it is found in the java.util package.
• 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
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
}
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
// from 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 “);
}
do {
System.out.print( “ID =” + userID[n] );
n++;
response = readInt( “Enter ” );
}while (response == 1);
int myArray[];
declares myArray to be an array of integers
• By new keyword
String s = new(“ankit”)
EXAMPLE
❖ String s1 = “welcome”
❖ String s2 = new String(“welcome”)
❖ String s3 = “welcome”
• The difference between the three statements is that, s1 and s3 are
pointing to the same memory location i.e. the string pool.
• s3 is pointing to a memory location on the heap.
• Using a new operator creates a memory location on the heap.
STRING STORAGE
STRING METHODS
No. Method Description
1 int length() It returns string length
2 char charAt(int index) It returns char value for the particular
index
3 String substring(int beginIndex) It returns substring for given begin
index.
4 String substring(int beginIndex, It returns substring for given begin
int endIndex) index and end index.
5 int indexOf(int ch) It returns the specified char value
index.
6 int indexOf(String substring) It returns the specified substring
index.
STRING METHODS
No. Method Description
8 boolean equals(Object another) It checks the equality of string with
the given object.
9 static String It compares another string. It doesn't
equalsIgnoreCase(String check case.
another)
10 String concat(String str) It concatenates the specified string.
11 boolean isEmpty() It checks if string is empty.
13 String replace(char old, char It replaces all occurrences of the
new) specified char value.
STRING METHODS
No. Method Description
14 String toLowerCase() It returns a string in lowercase.
15 String toUpperCase() It returns a string in uppercase.
16 String trim() It removes beginning and ending spaces of
the string.
17 static String valueOf(int It converts given type into string. It is an
value) overloaded method.
STRING BUFFER