- Java Tutorial
- Java Introduction
- Java Features
- Java Simple Program
- JVM, JDK and JRE
- Java Syntax
- Java Comments
- Java Keywords
- Java Variables
- Java Literals
- Java Separators
- Java Datatypes
- Java Operators
- Java Statements
- Java Strings
- Java Arrays
- Control Statement
- Java If
- Java If-else
- Java If-else-if
- Java Nested If
- Java Switch
- Iteration Statement
- Java For Loop
- Java For Each Loop
- Java While Loop
- Java Do While Loop
- Java Nested Loop
- Java Break/Continue
- Java Methods
- Java Methods
- Java Method Parameters
- Java Method Overloading
- Java Recursion
- Java OOPS
- Java OOPs
- Java Classes/Objects
- Java Inheritance
- Java Polymorphism
- Java Encapsulation
- Java Abstraction
- Java Modifiers
- Java Constructors
- Java Interface
- Java static keyword
- Java this keyword
- Java File Handling
- Java File
- Java Create File
- Java Read/Write File
- Java Delete File
- Java Program To
- Add Two Numbers
- Even or Odd Numbers
- Reverse a String
- Swap Two Numbers
- Prime Number
- Fibonacci Sequence
- Palindrome Strings
- Java Reference
- Java String Methods
- Java Math Methods
Java Class and Object
In Java, a class is a blueprint for creating objects, defining their properties (attributes) and behaviors (methods). Here's an overview with examples:
Class Definition:
- Define a class using the class keyword followed by the class name.
- Example:
class Car {
String brand;
int year;
void drive() {
System.out.println("Driving the " + brand);
}
}
Object Creation:
- Create objects of a class using the new keyword followed by the class constructor.
- Example:
Car myCar = new Car();
Accessing Attributes and Methods:
- Access class attributes and methods using the dot (.) operator.
- Example:
myCar.brand = "Toyota";
myCar.year = 2020;
myCar.drive();
Multiple Objects:
- You can create multiple objects of the same class, each with its own set of attributes and behaviors.
- Example:
Car friendCar = new Car();
friendCar.brand = "Honda";
friendCar.year = 2018;
friendCar.drive();
Summary
Java's class and object concept allow for the creation of modular and reusable code, promoting code organization and maintainability. Understanding how to define classes, create objects, and access their attributes and methods is essential for building Java applications.