Premium Only Content
![#22 Class and Object Practical in JAVA | Skyhighes | Lecture 22](https://1a-1791.com/video/s8/1/L/2/P/g/L2Pgp.qR4e-small-22-Class-and-Object-Practic.jpg)
#22 Class and Object Practical in JAVA | Skyhighes | Lecture 22
Here's a practical demonstration of classes and objects in Java:
1. Create a Class:
Java
public class Calculator {
int num1;
int num2;
public int add() {
return num1 + num2;
}
public int subtract() {
return num1 - num2;
}
}
Use code with caution. Learn more
2. Create Objects of the Class:
Java
Calculator calc1 = new Calculator();
Calculator calc2 = new Calculator();
Use code with caution. Learn more
3. Access and Modify Object Attributes:
Java
calc1.num1 = 10;
calc1.num2 = 5;
calc2.num1 = 20;
calc2.num2 = 8;
Use code with caution. Learn more
4. Call Object Methods:
Java
int result1 = calc1.add(); // result1 will be 15
int result2 = calc2.subtract(); // result2 will be 12
System.out.println("Result of addition: " + result1);
System.out.println("Result of subtraction: " + result2);
Use code with caution. Learn more
Output:
Result of addition: 15
Result of subtraction: 12
Key Points:
Each object has its own distinct values for attributes (num1 and num2).
Methods (add() and subtract()) operate on the object's specific data.
Multiple objects of the same class can exist independently.
Additional Examples:
Create a Person class with attributes like name, age, and address, and methods like greet() and introduce().
Create a BankAccount class with attributes like accountNumber, balance, and methods like deposit(), withdraw(), and checkBalance().
Create a Car class with attributes like make, model, color, and methods like start(), stop(), and accelerate().
Experiment with different classes and objects to solidify your understanding of these fundamental OOP concepts in Java!
-
LIVE
The Pete Santilli Show
3 hours agoRASKIN THREATENS CLASS ACTION TO STOP MUSK. BERNIE LIES TO THE PUBLIC ABOUT DOGE [EP 4434-8AM]
1,376 watching -
10:31
Space Ice
22 hours agoHardcore Henry - A Average Day In The Life Of Space Ice - Best Movie Ever
1.29K19 -
8:03
Colion Noir
21 hours agoA Judge Just Ruled You Can Own A Machine Gun
8.71K35 -
46:13
Survive History
21 hours agoCould You Survive in the Roman Special Forces?
124 -
19:40
Fit'n Fire
22 hours ago $0.02 earnedThe Best PDW -- Sig Sauer MPX 8" PDW
912 -
1:03:12
Game On!
12 hours ago $1.19 earnedOUCH, That Hurts! Eagles DOMINATE Chiefs in Super Bowl 59!
4.02K15 -
1:00:23
Ryan Long
1 month agoRyan Long - Problem Solved (FULL STANDUP SPECIAL)
124K39 -
15:42
Russell Brand
20 hours agoThey Can't Hide This About USAID Any Longer
200K323 -
2:07:54
TheSaltyCracker
13 hours agoLefties Upset With Elon's Big Balls ReeEEeE Stream 02-09-25
210K446 -
5:00:43
illyesjr
17 hours agoSuper Bowl LIX Watch Along!
104K26