SlideShare a Scribd company logo
1 of 35
Download to read offline
HISTORY OF JAVA
JAVA
• Father of Java: James Gasoline
EXPANSIONS:
• API-Application Programming Interface
• SDK-Software Development Kit
• JVM-Java virtual machine
History of Java
• 1990 oak : To control microprocessors
Embedded in customer item
• Oak needed to be
– Platform independent
– Extremely reliable
– Compact
• 1993: Java
– Internet and web exploration
– Internet application
• 1994: Hot Java Browser
• 1995: java1. 0
VERSIONS OF JAVA
• 1995 version 1.0:
– The Java development kit was released for free by
the sun
– 8-packages 212-classes
– Microsoft and other companies licensed Java
• 1997 version 1.1:
– 23 -packages 504-classes
– Improvement include better event handling inner
classes , improved jvm
– Microsoft developed its own 1.1 compatible Java
virtual machine for internet explorer
– Many browsers in use are still compatible only
with 1.1
1999 version 1.2:
-It is also called as the Java 2 platform
-59 packages 1520 classes
-Code & tools distributed as the SDK
-A Java foundation class based on swings
for improved graphics and user interfaces
– Collection API included list sets and hash map
2000 VERSION 1.3:
- 76 packages 1842 classes
- Java sound
2002 VERSION 1.4:
- 135 PACKAGES 2991 classes
- Improved I , xml support etc..,
2004 VERSION 5.0 (1.5):
- 165 packages over 3000 classes
- Faster startup metadata formatted
output
– Generic to operate on objects of various types
2006 JAVA SE 6:
– Scripting language support
2011 JAVA SE 7:
– JVM support for dynamic language
– String in switch
– Allowing underscores in numeric literals
FUTURE RELEASES:
JAVA SE 8:
– LAMBDA OPERATOR is expected in summer 2013
JAVA SE 9:
– Under planning
PACKAGES
• Each class has different methods is called
packages
FEAUTURES OF JAVA TECHNOLOGY
PLATFORM INDEPENDENT:
– Write once run anywhere
OBECT ORIENTED:
– No coding outside of class definitions including
main ()
– An extensive class library available in the core
language packages
COMPILER AND INTERPRETER:
– Code is compiled to byte codes that are
interpreted by a JVM
– This provides portability to any machine for which
a virtual machine has been written
– The two steps of compilation and interpretation
allow for extensive code checking and improved
security
ROBUST:
– Exception handling built-in strong type checking
Several dangerous features of c & c++
– No memory pointers
– No pre processor
– Garbage collector
AUTOMATIC MEMORY MANAGEMENT:
– Automatic garbage collection memory
management handled by the JVM
SECURITY:
– No memory pointers
– Programs run inside the virtual machine sandbox
CODE PATHOLOGIES REDUCED BY:
Byte code verifier:
– Checks classes after loading
Class loaders:
– Confines object of unique namespace
Security manager:
– Determines what resources a class can access
Java
Source
(. Java)
Java compiler
Java byte
code
(. Byte)
Java byte
code
move
locally or
through
the
network
Class loader
byte codes
Verifier
Java class
libraries
Java
interpreter
Just in
time
compiler
Run time system
Operating system
Hardware
Difference
c
• Focus on logic
• Procedure or structure
oriented
• Top – down approach
(Based on variable declaration)
c++
• Focus on both logic and
data
• Object oriented
programming language
• Bottom – top approach
(Variable declaration
C++
• Partially object oriented
language
• Pointers concept and
Preprocessor are available
• Operator overloading is
available
• Platform dependent
• A destructor is used to free
the memory
• The compiler is present
JAVA
• Purely object oriented
language
• Pointers concept and
Preprocessor is not
available
• Operator overloading is not
available
• Platform independent
• Automatic garbage
collection
• Both compiler and
interpreter is present
Markup language
• HTML, XML
• Design based language
Programming language
• C, C++, JAVA etc..,
• Logic based language
XML
• User defined tags
• Focused on data storage
• Case sensitive
HTML
• Predefined tags
• Focused on design
• Non case sensitive
Difference between function member
function and method
Function:
• Independent calling (in c)
Member function:
• Partially dependent on object (in c++)
(Members of class)
Methods:
• Fully dependent on object (Java)
Version 1.7 (string in switch)
Import Java. Io. *;
Class strswitch
{
Public static void main(string g[])
{
String s=“aaa”;
Switch (s)
{
Case “aaa”:
system.out.println(“from aaa”);
Case “bbb”:
system.out.println(“from bbb”);
Default:
system.out.println(“from default”);
}}}
Output
from aaa
Integer literal
Import java.io.*;
Class intliteral
{
Public static void main(string g[])
{
int a=12_78_56;
System.out.println(“a=“+a);
}
}
Output
a=127856
Special Keywords in Java
• Static
• Final
• Volatile
• Transient
• Strictfp
• Assert
• Byte
• Native
• Boolean
Final:
– Final is also like constant the give value can not
change throughout the program
Transient:
– Used within a certain period of time So it's not used
more
Strictfp:
– Display the exact result in a float
Assert:
– Implementing our assumption
Native:
– A program created in c can be accessed in Java
Byte:
– Between range (-128 to 0 to 127)
– Eg: byte b=123 is accepted
Byte b=129 is not accepted
Boolean:
– Assigning true or false to a statement or block
Static and Volatile
Static :
– A common memory allocation
Volatile:
– Share the value
Example for static and volatile
Eg Program:
Class samp
{
int a;
Static int b;
Volatile int c;
}
{
Samp s1.new samp;
Samp s2.new samp;
Samp s3.new samp;
}
Static memory allocation
a=1 ,b=2 ,c=3
s1 s2 s3
a
c
b (b is declared as static so it is
used in common)
1 0 0
3 3 3
2
Volatile memory allocation
a=1 ,b=2 ,c=3
s1 s2 s3
a
c (volatile value will be
shared among the object)
b
1 0 0
3 3 3
2
Java literals
Integer literal:
Eg: int a=10;
int b=010;
In integer literal if the first value is ‘0’ compiler
will take that as octal value.
Perform the operation and display the output
Output:
8
int a=1;
int b=2;
int c=0x10;
In integer literal if the first value is ‘0x’ compiler
will take that as hexadecimal value.
Perform the operation and display the output
Output:
16
Character literals
Declarations:
Char c=’p’;
Char c=98;
Char c=‘n’; ”0 is not used in java”
Char c=‘u0009’; (unicode)
Float literals
Declaration:
Float f=12.56f;
Float f=12.; (‘f’ no need compiler will take that
as 12.0)
Bytes =4;Maximum digits =6
Double:
double d=75.76835457786(maximum range is
not defined)
String literals
string s=“erode”;
String s=“erobde”(o/p:erde(since /b is defined
as backspace))
Eg:
int a=10;
int b=20;
int c=30;
string s=“hai”;
s.o.p(“a+b+c+s”);
s.o.p(“a+b+s+c”);
s.o.p(“a+s+b+s”);
output
60hai
30hai30
10hai2030(still it finds the string it will add the
content or numbers)

More Related Content

What's hot (20)

Threads in JAVA
Threads in JAVAThreads in JAVA
Threads in JAVA
 
Java Exception handling
Java Exception handlingJava Exception handling
Java Exception handling
 
Java Programming
Java ProgrammingJava Programming
Java Programming
 
Java tutorial PPT
Java tutorial PPTJava tutorial PPT
Java tutorial PPT
 
Exception Handling in JAVA
Exception Handling in JAVAException Handling in JAVA
Exception Handling in JAVA
 
JAVA PROGRAMMING
JAVA PROGRAMMING JAVA PROGRAMMING
JAVA PROGRAMMING
 
Introduction to java
Introduction to java Introduction to java
Introduction to java
 
Control Statements in Java
Control Statements in JavaControl Statements in Java
Control Statements in Java
 
Java Tokens
Java  TokensJava  Tokens
Java Tokens
 
Arrays in Java
Arrays in JavaArrays in Java
Arrays in Java
 
The Evolution of Java
The Evolution of JavaThe Evolution of Java
The Evolution of Java
 
Files in java
Files in javaFiles in java
Files in java
 
Core java complete ppt(note)
Core java  complete  ppt(note)Core java  complete  ppt(note)
Core java complete ppt(note)
 
Features of java
Features of javaFeatures of java
Features of java
 
Introduction of java
Introduction  of javaIntroduction  of java
Introduction of java
 
Introduction to java (revised)
Introduction to java (revised)Introduction to java (revised)
Introduction to java (revised)
 
oops concept in java | object oriented programming in java
oops concept in java | object oriented programming in javaoops concept in java | object oriented programming in java
oops concept in java | object oriented programming in java
 
Java static keyword
Java static keywordJava static keyword
Java static keyword
 
Introduction to java
Introduction to java Introduction to java
Introduction to java
 
Class and object in C++
Class and object in C++Class and object in C++
Class and object in C++
 

Similar to History of java'

Similar to History of java' (20)

Java Introduction
Java IntroductionJava Introduction
Java Introduction
 
j-chap1-Basics.ppt
j-chap1-Basics.pptj-chap1-Basics.ppt
j-chap1-Basics.ppt
 
Java1 in mumbai
Java1 in mumbaiJava1 in mumbai
Java1 in mumbai
 
JAVA_Day1_BasicIntroduction.pptx
JAVA_Day1_BasicIntroduction.pptxJAVA_Day1_BasicIntroduction.pptx
JAVA_Day1_BasicIntroduction.pptx
 
JAVAPart1_BasicIntroduction.pptx
JAVAPart1_BasicIntroduction.pptxJAVAPart1_BasicIntroduction.pptx
JAVAPart1_BasicIntroduction.pptx
 
1 java programming- introduction
1  java programming- introduction1  java programming- introduction
1 java programming- introduction
 
JAVA PROGRAM CONSTRUCTS OR LANGUAGE BASICS.pptx
JAVA PROGRAM CONSTRUCTS OR LANGUAGE BASICS.pptxJAVA PROGRAM CONSTRUCTS OR LANGUAGE BASICS.pptx
JAVA PROGRAM CONSTRUCTS OR LANGUAGE BASICS.pptx
 
Introduction to JAVA
Introduction to JAVAIntroduction to JAVA
Introduction to JAVA
 
basic_java.ppt
basic_java.pptbasic_java.ppt
basic_java.ppt
 
JAVA-History-buzzwords-JVM_architecture.pptx
JAVA-History-buzzwords-JVM_architecture.pptxJAVA-History-buzzwords-JVM_architecture.pptx
JAVA-History-buzzwords-JVM_architecture.pptx
 
basic core java up to operator
basic core java up to operatorbasic core java up to operator
basic core java up to operator
 
Java Programming concept
Java Programming concept Java Programming concept
Java Programming concept
 
Letest
LetestLetest
Letest
 
Unit 1
Unit 1Unit 1
Unit 1
 
1 Introduction To Java Technology
1 Introduction To Java Technology 1 Introduction To Java Technology
1 Introduction To Java Technology
 
1 Introduction To Java Technology
1 Introduction To Java Technology 1 Introduction To Java Technology
1 Introduction To Java Technology
 
Comp102 lec 3
Comp102   lec 3Comp102   lec 3
Comp102 lec 3
 
unit1.pptx
unit1.pptxunit1.pptx
unit1.pptx
 
Core java over view basics introduction by quontra solutions
Core java over view basics introduction by quontra solutionsCore java over view basics introduction by quontra solutions
Core java over view basics introduction by quontra solutions
 
JAVA INTRODUCTION
JAVA INTRODUCTIONJAVA INTRODUCTION
JAVA INTRODUCTION
 

Recently uploaded

So einfach geht modernes Roaming fuer Notes und Nomad.pdf
So einfach geht modernes Roaming fuer Notes und Nomad.pdfSo einfach geht modernes Roaming fuer Notes und Nomad.pdf
So einfach geht modernes Roaming fuer Notes und Nomad.pdfpanagenda
 
Long journey of Ruby standard library at RubyConf AU 2024
Long journey of Ruby standard library at RubyConf AU 2024Long journey of Ruby standard library at RubyConf AU 2024
Long journey of Ruby standard library at RubyConf AU 2024Hiroshi SHIBATA
 
Decarbonising Buildings: Making a net-zero built environment a reality
Decarbonising Buildings: Making a net-zero built environment a realityDecarbonising Buildings: Making a net-zero built environment a reality
Decarbonising Buildings: Making a net-zero built environment a realityIES VE
 
Testing tools and AI - ideas what to try with some tool examples
Testing tools and AI - ideas what to try with some tool examplesTesting tools and AI - ideas what to try with some tool examples
Testing tools and AI - ideas what to try with some tool examplesKari Kakkonen
 
Abdul Kader Baba- Managing Cybersecurity Risks and Compliance Requirements i...
Abdul Kader Baba- Managing Cybersecurity Risks  and Compliance Requirements i...Abdul Kader Baba- Managing Cybersecurity Risks  and Compliance Requirements i...
Abdul Kader Baba- Managing Cybersecurity Risks and Compliance Requirements i...itnewsafrica
 
Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...
Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...
Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...Alkin Tezuysal
 
MuleSoft Online Meetup Group - B2B Crash Course: Release SparkNotes
MuleSoft Online Meetup Group - B2B Crash Course: Release SparkNotesMuleSoft Online Meetup Group - B2B Crash Course: Release SparkNotes
MuleSoft Online Meetup Group - B2B Crash Course: Release SparkNotesManik S Magar
 
A Journey Into the Emotions of Software Developers
A Journey Into the Emotions of Software DevelopersA Journey Into the Emotions of Software Developers
A Journey Into the Emotions of Software DevelopersNicole Novielli
 
Transcript: New from BookNet Canada for 2024: BNC SalesData and LibraryData -...
Transcript: New from BookNet Canada for 2024: BNC SalesData and LibraryData -...Transcript: New from BookNet Canada for 2024: BNC SalesData and LibraryData -...
Transcript: New from BookNet Canada for 2024: BNC SalesData and LibraryData -...BookNet Canada
 
Generative AI - Gitex v1Generative AI - Gitex v1.pptx
Generative AI - Gitex v1Generative AI - Gitex v1.pptxGenerative AI - Gitex v1Generative AI - Gitex v1.pptx
Generative AI - Gitex v1Generative AI - Gitex v1.pptxfnnc6jmgwh
 
Emixa Mendix Meetup 11 April 2024 about Mendix Native development
Emixa Mendix Meetup 11 April 2024 about Mendix Native developmentEmixa Mendix Meetup 11 April 2024 about Mendix Native development
Emixa Mendix Meetup 11 April 2024 about Mendix Native developmentPim van der Noll
 
Zeshan Sattar- Assessing the skill requirements and industry expectations for...
Zeshan Sattar- Assessing the skill requirements and industry expectations for...Zeshan Sattar- Assessing the skill requirements and industry expectations for...
Zeshan Sattar- Assessing the skill requirements and industry expectations for...itnewsafrica
 
Tampa BSides - The No BS SOC (slides from April 6, 2024 talk)
Tampa BSides - The No BS SOC (slides from April 6, 2024 talk)Tampa BSides - The No BS SOC (slides from April 6, 2024 talk)
Tampa BSides - The No BS SOC (slides from April 6, 2024 talk)Mark Simos
 
Assure Ecommerce and Retail Operations Uptime with ThousandEyes
Assure Ecommerce and Retail Operations Uptime with ThousandEyesAssure Ecommerce and Retail Operations Uptime with ThousandEyes
Assure Ecommerce and Retail Operations Uptime with ThousandEyesThousandEyes
 
Top 10 Hubspot Development Companies in 2024
Top 10 Hubspot Development Companies in 2024Top 10 Hubspot Development Companies in 2024
Top 10 Hubspot Development Companies in 2024TopCSSGallery
 
Genislab builds better products and faster go-to-market with Lean project man...
Genislab builds better products and faster go-to-market with Lean project man...Genislab builds better products and faster go-to-market with Lean project man...
Genislab builds better products and faster go-to-market with Lean project man...Farhan Tariq
 
Microsoft 365 Copilot: How to boost your productivity with AI – Part two: Dat...
Microsoft 365 Copilot: How to boost your productivity with AI – Part two: Dat...Microsoft 365 Copilot: How to boost your productivity with AI – Part two: Dat...
Microsoft 365 Copilot: How to boost your productivity with AI – Part two: Dat...Nikki Chapple
 
Why device, WIFI, and ISP insights are crucial to supporting remote Microsoft...
Why device, WIFI, and ISP insights are crucial to supporting remote Microsoft...Why device, WIFI, and ISP insights are crucial to supporting remote Microsoft...
Why device, WIFI, and ISP insights are crucial to supporting remote Microsoft...panagenda
 
2024 April Patch Tuesday
2024 April Patch Tuesday2024 April Patch Tuesday
2024 April Patch TuesdayIvanti
 
Infrared simulation and processing on Nvidia platforms
Infrared simulation and processing on Nvidia platformsInfrared simulation and processing on Nvidia platforms
Infrared simulation and processing on Nvidia platformsYoss Cohen
 

Recently uploaded (20)

So einfach geht modernes Roaming fuer Notes und Nomad.pdf
So einfach geht modernes Roaming fuer Notes und Nomad.pdfSo einfach geht modernes Roaming fuer Notes und Nomad.pdf
So einfach geht modernes Roaming fuer Notes und Nomad.pdf
 
Long journey of Ruby standard library at RubyConf AU 2024
Long journey of Ruby standard library at RubyConf AU 2024Long journey of Ruby standard library at RubyConf AU 2024
Long journey of Ruby standard library at RubyConf AU 2024
 
Decarbonising Buildings: Making a net-zero built environment a reality
Decarbonising Buildings: Making a net-zero built environment a realityDecarbonising Buildings: Making a net-zero built environment a reality
Decarbonising Buildings: Making a net-zero built environment a reality
 
Testing tools and AI - ideas what to try with some tool examples
Testing tools and AI - ideas what to try with some tool examplesTesting tools and AI - ideas what to try with some tool examples
Testing tools and AI - ideas what to try with some tool examples
 
Abdul Kader Baba- Managing Cybersecurity Risks and Compliance Requirements i...
Abdul Kader Baba- Managing Cybersecurity Risks  and Compliance Requirements i...Abdul Kader Baba- Managing Cybersecurity Risks  and Compliance Requirements i...
Abdul Kader Baba- Managing Cybersecurity Risks and Compliance Requirements i...
 
Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...
Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...
Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...
 
MuleSoft Online Meetup Group - B2B Crash Course: Release SparkNotes
MuleSoft Online Meetup Group - B2B Crash Course: Release SparkNotesMuleSoft Online Meetup Group - B2B Crash Course: Release SparkNotes
MuleSoft Online Meetup Group - B2B Crash Course: Release SparkNotes
 
A Journey Into the Emotions of Software Developers
A Journey Into the Emotions of Software DevelopersA Journey Into the Emotions of Software Developers
A Journey Into the Emotions of Software Developers
 
Transcript: New from BookNet Canada for 2024: BNC SalesData and LibraryData -...
Transcript: New from BookNet Canada for 2024: BNC SalesData and LibraryData -...Transcript: New from BookNet Canada for 2024: BNC SalesData and LibraryData -...
Transcript: New from BookNet Canada for 2024: BNC SalesData and LibraryData -...
 
Generative AI - Gitex v1Generative AI - Gitex v1.pptx
Generative AI - Gitex v1Generative AI - Gitex v1.pptxGenerative AI - Gitex v1Generative AI - Gitex v1.pptx
Generative AI - Gitex v1Generative AI - Gitex v1.pptx
 
Emixa Mendix Meetup 11 April 2024 about Mendix Native development
Emixa Mendix Meetup 11 April 2024 about Mendix Native developmentEmixa Mendix Meetup 11 April 2024 about Mendix Native development
Emixa Mendix Meetup 11 April 2024 about Mendix Native development
 
Zeshan Sattar- Assessing the skill requirements and industry expectations for...
Zeshan Sattar- Assessing the skill requirements and industry expectations for...Zeshan Sattar- Assessing the skill requirements and industry expectations for...
Zeshan Sattar- Assessing the skill requirements and industry expectations for...
 
Tampa BSides - The No BS SOC (slides from April 6, 2024 talk)
Tampa BSides - The No BS SOC (slides from April 6, 2024 talk)Tampa BSides - The No BS SOC (slides from April 6, 2024 talk)
Tampa BSides - The No BS SOC (slides from April 6, 2024 talk)
 
Assure Ecommerce and Retail Operations Uptime with ThousandEyes
Assure Ecommerce and Retail Operations Uptime with ThousandEyesAssure Ecommerce and Retail Operations Uptime with ThousandEyes
Assure Ecommerce and Retail Operations Uptime with ThousandEyes
 
Top 10 Hubspot Development Companies in 2024
Top 10 Hubspot Development Companies in 2024Top 10 Hubspot Development Companies in 2024
Top 10 Hubspot Development Companies in 2024
 
Genislab builds better products and faster go-to-market with Lean project man...
Genislab builds better products and faster go-to-market with Lean project man...Genislab builds better products and faster go-to-market with Lean project man...
Genislab builds better products and faster go-to-market with Lean project man...
 
Microsoft 365 Copilot: How to boost your productivity with AI – Part two: Dat...
Microsoft 365 Copilot: How to boost your productivity with AI – Part two: Dat...Microsoft 365 Copilot: How to boost your productivity with AI – Part two: Dat...
Microsoft 365 Copilot: How to boost your productivity with AI – Part two: Dat...
 
Why device, WIFI, and ISP insights are crucial to supporting remote Microsoft...
Why device, WIFI, and ISP insights are crucial to supporting remote Microsoft...Why device, WIFI, and ISP insights are crucial to supporting remote Microsoft...
Why device, WIFI, and ISP insights are crucial to supporting remote Microsoft...
 
2024 April Patch Tuesday
2024 April Patch Tuesday2024 April Patch Tuesday
2024 April Patch Tuesday
 
Infrared simulation and processing on Nvidia platforms
Infrared simulation and processing on Nvidia platformsInfrared simulation and processing on Nvidia platforms
Infrared simulation and processing on Nvidia platforms
 

History of java'

  • 2. JAVA • Father of Java: James Gasoline EXPANSIONS: • API-Application Programming Interface • SDK-Software Development Kit • JVM-Java virtual machine
  • 3. History of Java • 1990 oak : To control microprocessors Embedded in customer item • Oak needed to be – Platform independent – Extremely reliable – Compact • 1993: Java – Internet and web exploration – Internet application • 1994: Hot Java Browser • 1995: java1. 0
  • 4. VERSIONS OF JAVA • 1995 version 1.0: – The Java development kit was released for free by the sun – 8-packages 212-classes – Microsoft and other companies licensed Java • 1997 version 1.1: – 23 -packages 504-classes – Improvement include better event handling inner classes , improved jvm
  • 5. – Microsoft developed its own 1.1 compatible Java virtual machine for internet explorer – Many browsers in use are still compatible only with 1.1 1999 version 1.2: -It is also called as the Java 2 platform -59 packages 1520 classes -Code & tools distributed as the SDK -A Java foundation class based on swings for improved graphics and user interfaces
  • 6. – Collection API included list sets and hash map 2000 VERSION 1.3: - 76 packages 1842 classes - Java sound 2002 VERSION 1.4: - 135 PACKAGES 2991 classes - Improved I , xml support etc.., 2004 VERSION 5.0 (1.5): - 165 packages over 3000 classes - Faster startup metadata formatted output
  • 7. – Generic to operate on objects of various types 2006 JAVA SE 6: – Scripting language support 2011 JAVA SE 7: – JVM support for dynamic language – String in switch – Allowing underscores in numeric literals FUTURE RELEASES: JAVA SE 8: – LAMBDA OPERATOR is expected in summer 2013 JAVA SE 9: – Under planning
  • 8. PACKAGES • Each class has different methods is called packages
  • 9. FEAUTURES OF JAVA TECHNOLOGY PLATFORM INDEPENDENT: – Write once run anywhere OBECT ORIENTED: – No coding outside of class definitions including main () – An extensive class library available in the core language packages
  • 10. COMPILER AND INTERPRETER: – Code is compiled to byte codes that are interpreted by a JVM – This provides portability to any machine for which a virtual machine has been written – The two steps of compilation and interpretation allow for extensive code checking and improved security ROBUST: – Exception handling built-in strong type checking
  • 11. Several dangerous features of c & c++ – No memory pointers – No pre processor – Garbage collector AUTOMATIC MEMORY MANAGEMENT: – Automatic garbage collection memory management handled by the JVM SECURITY: – No memory pointers – Programs run inside the virtual machine sandbox
  • 12. CODE PATHOLOGIES REDUCED BY: Byte code verifier: – Checks classes after loading Class loaders: – Confines object of unique namespace Security manager: – Determines what resources a class can access
  • 13. Java Source (. Java) Java compiler Java byte code (. Byte) Java byte code move locally or through the network Class loader byte codes Verifier Java class libraries Java interpreter Just in time compiler Run time system Operating system Hardware
  • 14. Difference c • Focus on logic • Procedure or structure oriented • Top – down approach (Based on variable declaration) c++ • Focus on both logic and data • Object oriented programming language • Bottom – top approach (Variable declaration
  • 15. C++ • Partially object oriented language • Pointers concept and Preprocessor are available • Operator overloading is available • Platform dependent • A destructor is used to free the memory • The compiler is present JAVA • Purely object oriented language • Pointers concept and Preprocessor is not available • Operator overloading is not available • Platform independent • Automatic garbage collection • Both compiler and interpreter is present
  • 16. Markup language • HTML, XML • Design based language Programming language • C, C++, JAVA etc.., • Logic based language
  • 17. XML • User defined tags • Focused on data storage • Case sensitive HTML • Predefined tags • Focused on design • Non case sensitive
  • 18. Difference between function member function and method Function: • Independent calling (in c) Member function: • Partially dependent on object (in c++) (Members of class) Methods: • Fully dependent on object (Java)
  • 19. Version 1.7 (string in switch) Import Java. Io. *; Class strswitch { Public static void main(string g[]) { String s=“aaa”; Switch (s) { Case “aaa”: system.out.println(“from aaa”); Case “bbb”: system.out.println(“from bbb”); Default: system.out.println(“from default”); }}}
  • 21. Integer literal Import java.io.*; Class intliteral { Public static void main(string g[]) { int a=12_78_56; System.out.println(“a=“+a); } }
  • 23. Special Keywords in Java • Static • Final • Volatile • Transient • Strictfp • Assert • Byte • Native • Boolean
  • 24. Final: – Final is also like constant the give value can not change throughout the program Transient: – Used within a certain period of time So it's not used more Strictfp: – Display the exact result in a float Assert: – Implementing our assumption
  • 25. Native: – A program created in c can be accessed in Java Byte: – Between range (-128 to 0 to 127) – Eg: byte b=123 is accepted Byte b=129 is not accepted Boolean: – Assigning true or false to a statement or block
  • 26. Static and Volatile Static : – A common memory allocation Volatile: – Share the value
  • 27. Example for static and volatile Eg Program: Class samp { int a; Static int b; Volatile int c; } { Samp s1.new samp; Samp s2.new samp; Samp s3.new samp; }
  • 28. Static memory allocation a=1 ,b=2 ,c=3 s1 s2 s3 a c b (b is declared as static so it is used in common) 1 0 0 3 3 3 2
  • 29. Volatile memory allocation a=1 ,b=2 ,c=3 s1 s2 s3 a c (volatile value will be shared among the object) b 1 0 0 3 3 3 2
  • 30. Java literals Integer literal: Eg: int a=10; int b=010; In integer literal if the first value is ‘0’ compiler will take that as octal value. Perform the operation and display the output Output: 8
  • 31. int a=1; int b=2; int c=0x10; In integer literal if the first value is ‘0x’ compiler will take that as hexadecimal value. Perform the operation and display the output Output: 16
  • 32. Character literals Declarations: Char c=’p’; Char c=98; Char c=‘n’; ”0 is not used in java” Char c=‘u0009’; (unicode)
  • 33. Float literals Declaration: Float f=12.56f; Float f=12.; (‘f’ no need compiler will take that as 12.0) Bytes =4;Maximum digits =6 Double: double d=75.76835457786(maximum range is not defined)
  • 34. String literals string s=“erode”; String s=“erobde”(o/p:erde(since /b is defined as backspace)) Eg: int a=10; int b=20; int c=30; string s=“hai”; s.o.p(“a+b+c+s”); s.o.p(“a+b+s+c”); s.o.p(“a+s+b+s”);
  • 35. output 60hai 30hai30 10hai2030(still it finds the string it will add the content or numbers)

Editor's Notes

  1. Last value stored in b will be taken as common valueIf b= 7 means the value will be changed as 7