UNIT-1Introduction to java programming-Features of Java Language-JVM -The Java Environment- Fundamental Programming Structures in Java – Comments
UNIT-1Introduction to java programming-Features of Java Language-JVM -The Java Environment- Fundamental Programming Structures in Java – Comments
INTRODUCTION TO JAVA
PROGRAMMING
Text Book
T1- Herbert Schildt, ―Java The complete reference‖, 8th Edition, McGraw Hill
Education, 2011.
T2 - Cay S. Horstmann, Gary cornell, ―Core Java Volume –I Fundamentals‖, 9th
Edition, Prentice Hall, 2013.
UNITS
member functions.
2. Class
Car Santro
Car Alto
Car Etios
Class Object
Class : Car
Attributes:
Name
Model //data members
Year of Manufacture
Colour
Engine Power
Operations:
Start( ) // member functions
Stop( )
Accelerate( )
Class and Objects
3.Data Abstraction:
Data Abstraction represents only the essential
Bird
Shape
Draw ()
of existing classes
We can build program from the standard working module that
communicate with one another, rather than having to start writing the code
from scratch. This leads to saving of development time and higher
productivity.
The principal of data hiding helps the programmer to build secure
programs.
It is possible to have multiple instance of an object to co-exist without any
interference
It is easy to partition the work in a project, based on objects.
systems.
Message passing techniques for communication between objects makes the
James Gasoline 3
“ In 1991, “Green Team” of Sun
Microsystem
leded by James Gosling
developed the Java
Programming Language.
Previously it was called Oak, later
in 1995, it was named Java.
4
▰ Java is also regarded as
Internet programming language.
It can make web pages more
dynamic, responsive using Java
applet whereas HTML is mostly
flat & static.
5
HISTORY OF JAVA
▰ 1993: Java
– Internet and web exploration
– Internet application
▰ 1994: Hot Java Browser
▰ 1995: java1. 0 6
VERSIONS OF
JAVA
– The Java development kit was released for free by the sun
– 8-packages 212-classes
– Microsoft and other companies licensed Java
7
- Collection API included list sets and hash map
VERSIONS OF
JAVA
▰ 2011 JAVA SE 7:
▰JAVA SE 8:
– LAMBDA OPERATOR is expected in summer 2013
JAVA SE #:
JAVA SE #:
.
.
. Java 21, the latest, was released on September 19, 2023.
9
TOPIC 1
1. Simple
According to Sun, Java language is simple because:
•syntax is based on C++ .
•removed many confusing and/or rarely-used features e.g., explicit pointers,
operator overloading etc.
•No need to remove unreferenced objects because there is Automatic Garbage
Collection in java.
2. Object-oriented
•Like C++, java uses all the OOP concepts like encapsulation, inheritance and
polymorphism etc.
•Java is called a purely object oriented language as everything we write inside
class
in a java program.
Features of Java (Java buzz
words)(Contn…)
3.Architecture-Neutral
Java code can be run on multiple platforms e.g. Windows, Linux, Sun
Solaris, Mac/OS etc.
Java code is compiled by the compiler and converted into bytecode. This
bytecode is a platform-independent code because it can run on any
machine with any processor and with any OS.
Write Once and Run Anywhere(WORA).
Features of Java (Java buzz
words)(Contn…)
4. Security
When we use a Java-compatible Web browser, we can safely download Java
security problem.
There is automatic garbage collection in java.
There is exception handling and type checking mechanism in java. All these
Distributed:
Java is designed for use on network; it has an extensive library which
internet.
Features of Java (Java buzz
words)(Contn…)
Multithreaded
Java was designed to meet the real-world requirement of creating interactive,
networked programs.
Java supports multithreaded programming, which allows us to write programs
information that is used to verify and resolve accesses to objects at run time.
This makes it possible to dynamically link code in a safe and expedient
manner.
This is crucial to the robustness of the applet environment, in which small
JVM generates a .class(Bytecode) file, and that file can be run in any OS,
but JVM should have in OS because JVM is platform dependent.
The Java Environment
but some are optional. The optional section can be excluded from the
program depending upon the requirements of the programmer.
STRUCTURE OF JAVA PROGRAMMING
(Cont…)
Documentation Section
It includes the comments that improve the readability of the program. A
comment is a non-executable statement that helps to read and understand
a program especially when your programs get more complex.
Eg:1 // Calculate sum of two numbers
Eg:2 /*calculate sum of two numbers
and it is a multiline comment */
Package Statement
A package is a collection of classes, interfaces and sub-packages.
feature of Java program. The classes are used to map real world problems.
STRUCTURE OF JAVA
PROGRAMMING (Cont…)
Main Method Class Section:
Every program in Java consists of at least one class, the one that contains the
main method. The main () method which is from where the execution of program
actually starts and follow the statements in the order specified. The class section
is mandatory.
First Java Program: print a message “Welcome to Java World”
class Example
{
C:\>javac Example.java
The javac compiler creates a file called Example.class that contains the byte code
version of the program. As discussed earlier, the Java byte code is the intermediate
representation of our program that contains instructions the Java interpreter will
execute. Thus, the output of javac is not code that can be directly executed. To
actually run the program, we must use the Java interpreter, called java. To do so,
pass the class name Example as a command-line argument, as shown here:
C:\>java Example
When the program is run, the following output is displayed:
Welcome to Java World
Total Platform
Independence
JAVA COMPILER
(translator)
JAVA INTERPRETER
(one for each different system)