Java Lecture2
Java Lecture2
TECHNOLOGY
BCA
Semester-III
Object Oriented Programming Using
Java
Prof(Dr)Laxmi Ahuja
Learning Objectives
•Imparting java programming skill to students
C++
C Java
JAVA And Python
Java is a high-level, object-oriented programming language.
Java has a syntax similar to C and C++ but with low-level difficulties
Java is platform-independent (WORA – Write Once Run Anywhere) meaning compiled java code can
run on different platforms without recompilation.
class GFG {
public static void main(String[] args)
{
System.out.println("Hello World");
}
}
JAVA And Python
PYTHON JAVA
• Python has generally fewer lines • Java has long lines of code.
of code. • Java has a large number of
• Python is heavily used for Frameworks. Popular ones are
Machine Learning, Deep Spring, Hibernate, etc.
Learning, and so on. Python also
has two very popular
frameworks for web application • The syntax is complex as it
development, Flask and Django. throws errors if you miss
semicolons or curly braces.
• The syntax is easy to remember
almost similar to human
language.
Cont..
PYTHON JAVA
JAVA
PYTHON
JAVA and C
Java is lot like C but difference is java is object oriented language
Static: static declares this method as one of the class The main must always
be declared as static, since the interpreter uses this method before any objects
are created
Void: void states that the main method does not return any value but simply
prints some text to the screen.
SYSTEM---CLASS
OUT----OBJECT
PRINTLN---METHOD
• The main() method
public static void main(String args[]){
...
}
public--- the interpreter can call it
static ----It is a static method belonging to the class
void -----It does not return a value
String----It always has an array of String objects as its formal parameter.
the array contains any arguments passed to the program on the
command line
The source file’s name must match the class name which main
method is in
Features of JAVA
• SIMPLE
• OBJECT ORIENTED
• PORTABLE
• COMPILE AND INTERPRETED
• PLATFORM INDEPENDENT
• SECURE
• ROBUST
• ARCHITECTURE NEUTRAL
• HIGH PERFORMANCE
• MULTITHREADED
• DISTRIBUTED
• DYNAMIC
Sun describes it as
"A simple, object-oriented, distributed, interpreted, robust, secure, architecture neutral, portable, high-
performance, multi-threaded and dynamic language."
20
SIMPLE
• Java is simple as its syntax are simple and based on C++ ,easy to understand
• java design is easy to use, write, compile and debug and learn, then other
programming languages
• Removed complicated and rarely used features like operator overloading etc.
• No need of removing unreferenced objects because there is an Auto garbage
Collection in Java
• Java omits many rarely used, poorly understood, confusing features of C++.
OBJECT ORIENTED
• The object model in java is simple and easy to extend
PROCESS OF COMPILATION
PROCESS OF INTERPRETATION
Java is Compiled and Interpreted
Hardware and
Programmer
Operating System
• Virus free programs can be developed in Java because of its JVM feature
• JVM verify the bytecode before it run and make sure that prog is not making any
unsafe operations
• JVM provides layer of Security Manager which gives assurance to programmer
that no malicious code access any API features.
• Java provides access modifiers to hide codes.
• Java provides features of exception handling
• JVM handles memory management and garbage collector features in Java and
frees the programmer from all these issues
Robust
• Java is robust language .It gives feature of Fault Tolerant
• It provides many safeguards to ensure reliable code. It has strict compile time and runtime checking
for data types.
• It has several features designed to avoid crashes during program execution, including:
• No pointer arithmetic
• Garbage collection--no bad addresses
• It incorporates the concept of exception handling which captures errors and eliminate the risk of
crashing the system
• Interfaces and exceptions
The single biggest difference between Java and C/C++ is that Java has “a inner safe pointer-model”,
therefore it eliminates the possibility of overwriting memory and corrupting data, so programmers feel
30
Java is architecture-Neutral
• Small task gets executed simultaneously and increase the speed of software
• Multithreaded means handling multiple tasks simultaneously. Java supports multiple programs.
• Java supports multithreaded programming, which allows you to write programs that do many
things simultaneously. The java run-time system comes with an elegant yet sophisticated solution
for multi-process synchronization that enables you to construct smoothly running interactive
systems This means that we need not wait for the application to finish one task before beginning
another.
• For example we can listen to an audio clip while scrolling a page and at the same time download
an applet from a distant computer.
Distributed
• Java facilitates user to create distributed applications in java
• New objects can easily be created, and new classes can be loaded
as the program runs.
QUIZ
Select all the core concepts of OOPS.
1.Abstraction
2. Inheritance
3. Interface
4. Polymorphism
5. Generics
main() method
The first line of code
Last line of code
main class
A.Object-Oriented
B.Platform-Independent
C.Syntax
D.Memory Management