Unit 1- Basic concept of object-oriented-programming.ppt
hannahroseline2
201 views
56 slides
Jun 29, 2024
Slide 1 of 56
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
About This Presentation
Basic concepts
Size: 879.81 KB
Language: en
Added: Jun 29, 2024
Slides: 56 pages
Slide Content
UNIT 1
FUNDAMENTALS OF OBJECT-
ORIENTED PROGRAMMING
Basic Concepts Of Object Oriented Programming
And Java Environment
By
Hannah Roseline
Assistant Professor
ApplicationofOOP:
•Real-businesssystemsareoftenmuchmorecomplexand
containmanymoreobjectswithcomplicatedattributesand
methods.OOPisusefulinthesetypesofapplicationsbecause
itcansimplifyacomplexproblem.Thepromisingareasfor
applicationofOOPinclude:
Real-time systems
Simulation and modeling
Object-oriented databases
Hypertext, hypermedia and expertext
Al and expert systems
Neural networks and parallel programming
Decision support and office automation systems
CIM/CAM/CAD systems(computer Aided
manufacturing)(computer aided design).
About java:
•Java isa widely-used programming language for coding
web applications. It has been a popular choice among
developers for over two decades, with millions of Java
applications in use today. Java is a multi-platform, object-
oriented, and network-centric language that can be used as
a platform in itself.
•Java was originally developed by James Gosling at Sun
Microsystems. It was released inMay 1995as a core
component of Sun's Java platform.
Java development kit:
•The Java Development Kit (JDK) isa software
development environment used for developing Java
applications and applets. It includes the Java
Runtime Environment (JRE).
•Javac(java compiler)
•Applet viewer(for viewing java applet)
•Java (java interpreter)
•Javap( java disassembler)
•Javah(for c header files)
•Javadoc (for creating HTML documents)
•Jdb( java debugger)
Implementing a java program:
•Create the program by typing it into a text editor and
saving it to a file –HelloWorld.java.
•Compile it by typing “javac HelloWorld.java” in the
terminal window.
•Execute (or run) it by typing “java HelloWorld” in the
terminal window.