0% found this document useful (0 votes)
31 views

Java Learning: 1. OOP (Object Oriented Programming)

Java is an object-oriented programming language that uses classes, objects, and methods. Classes define behaviors and properties for objects through methods while also allowing for inheritance, where subclasses can extend and modify parent classes. Objects are instances of classes that encapsulate both data and procedures to manipulate that data.

Uploaded by

carutsa
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
31 views

Java Learning: 1. OOP (Object Oriented Programming)

Java is an object-oriented programming language that uses classes, objects, and methods. Classes define behaviors and properties for objects through methods while also allowing for inheritance, where subclasses can extend and modify parent classes. Objects are instances of classes that encapsulate both data and procedures to manipulate that data.

Uploaded by

carutsa
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 5

JAVA LEARNING

1. OOP(Object Oriented Programming)

 Java is an object-oriented programming (OOP) language, which means that we


can design classes, objects, and methods that can perform certain actions.
These behaviors are important in the construction of larger, more powerful
Java programs.

2. CLASSES

 A class is a set of instructions that describe how a data structure should


behave.

3. OBJECTS/INSTANCES
4. METHODS
5. INHERITANCE
6. Generalizations
7.

You might also like