java oop
Polymorphism,-Overload, Override
Encapsulation, (setter, getter, innerClass)
Inheritance, (extends , Override)
Abstraction (abstract class , interface)
java oop
Polymorphism,-Overload, Override
Encapsulation, (setter, getter, innerClass)
Inheritance, (extends , Override)
Abstraction (abstract class , interface)
java oop
Polymorphism,-Overload, Override
Encapsulation, (setter, getter, innerClass)
Inheritance, (extends , Override)
Abstraction (abstract class , interface)
object oriented programming
// OOP is a programming paradigm found in many languages today.
// Generally, an object is an instance of a Class.
// Here's a Java example:
public class Car
{
private double speed;
public Car(double initialSpeed) // Constructor, most common way to initialize objects of a class.
{
speed = initialSpeed;
}
// Accessor methods, aka getters
public double getSpeed()
{
return speed;
// This is an example of encapsulation, where
// methods are used to hide the implementation details
// and ensure the programmer can't modify things they shouldn't be able to.
}
public void accelerate()
{
speed++;
}
public void slowDown()
{
speed--;
}
}
object oriented programming
// OOP is a programming paradigm found in many languages today.
// Generally, an object is an instance of a Class.
// Here's a Java example:
public class Car
{
private double speed;
public Car(double initialSpeed) // Constructor, most common way to initialize objects of a class.
{
speed = initialSpeed;
}
// Accessor methods, aka getters
public double getSpeed()
{
return speed;
// This is an example of encapsulation, where
// methods are used to hide the implementation details
// and ensure the programmer can't modify things they shouldn't be able to.
}
public void accelerate()
{
speed++;
}
public void slowDown()
{
speed--;
}
}
java oop
public class YourClass {
String example;
int test;
// Constructor
public YourClass(String example, int test) {
this.example = example;
this.test = test;
}
// Method
public void someMethod() {
System.out.println(example);
}
}
// Usage:
// Construct
YourClass exampleObject = new YourClass("Hello World!", 5);
// Execute Method:
exampleObject.someMethod();
java oop
public class YourClass {
String example;
int test;
// Constructor
public YourClass(String example, int test) {
this.example = example;
this.test = test;
}
// Method
public void someMethod() {
System.out.println(example);
}
}
// Usage:
// Construct
YourClass exampleObject = new YourClass("Hello World!", 5);
// Execute Method:
exampleObject.someMethod();
oop java
{}
void BankAccount::setData()
{
system("cls");
cout << "Please Enter Information For New Account" << endl;
cout << "----------------------------------------" << endl;
cout << "Enter Depositor Name:";
cin >> depositorName;
cout << "Enter Account Number:";
cin >> accountNumber;
cout << "Enter Account:";
cin >> totalBalance;
}
void BankAccount::deposite()
{
system("cls");
cout << "Your Total Balance is:" << totalBalance << endl;
cout << "---------------------" << endl;
cout << "Enter Depositor Name:";
cin >> depositorName;
cout << "Enter Amount Which You Deposite:";
cin >> amount;
totalBalance += amount;
cout << "Your Total Balance is:" << totalBalance << endl;
}
void BankAccount::withdraw()
{
system("cls");
cout << "Your Total Balance is:" << totalBalance << endl;
cout << "" << endl;
cout << "Please Enter withdraw Amount" << endl;
cin >> amount;
while (amount>totalBalance){
cout << "Your Entered Amount Greater Then Total Account Balance try again" << endl;
cin >> amount;
}
totalBalance -= amount;
}
void BankAccount::display()
{
system("cls");
cout << "Information" << endl;
cout << "" << endl;
cout << "Bank Name:" << bankName << endl;
cout << "Bank Type:" << bankType << endl;
cout << "Acount No:" << accountNumber << endl;
cout << "Depositor Name:" << depositorName << endl;
cout << "Total Balance is:" << totalBalance << " RS" << endl;
}
int _tmain(int argc, _TCHAR* argv[])
{
int a;
BankAccount b1;
do{
system("cls");
cout << "Bank Account Information" << endl;
cout << "------------------------" << endl;
cout << "1>. Open a New Account" << endl;
cout << "2>. Deposite An Amount" << endl;
cout << "3>. Withdraw An Amount" << endl;
cout << "4>. Check Your Account Balance" << endl;
cout << "5>. Go Home or Exit" << endl;
cout << "" << endl;
cout << "Enter Your Choice:";
cin >> a;
switch (a)
{
case 1:
b1.setData();
break;
case 2:
b1.deposite();
break;
case 3:
b1.withdraw();
break;
case 4:
b1.display();
break;
case 5:
exit(0);
default:
cout << "Please Enter The Correct Choice!..";
}
system("pause");
} while (a != 5);
_getch();
return 0;
}
oop java
{}
void BankAccount::setData()
{
system("cls");
cout << "Please Enter Information For New Account" << endl;
cout << "----------------------------------------" << endl;
cout << "Enter Depositor Name:";
cin >> depositorName;
cout << "Enter Account Number:";
cin >> accountNumber;
cout << "Enter Account:";
cin >> totalBalance;
}
void BankAccount::deposite()
{
system("cls");
cout << "Your Total Balance is:" << totalBalance << endl;
cout << "---------------------" << endl;
cout << "Enter Depositor Name:";
cin >> depositorName;
cout << "Enter Amount Which You Deposite:";
cin >> amount;
totalBalance += amount;
cout << "Your Total Balance is:" << totalBalance << endl;
}
void BankAccount::withdraw()
{
system("cls");
cout << "Your Total Balance is:" << totalBalance << endl;
cout << "" << endl;
cout << "Please Enter withdraw Amount" << endl;
cin >> amount;
while (amount>totalBalance){
cout << "Your Entered Amount Greater Then Total Account Balance try again" << endl;
cin >> amount;
}
totalBalance -= amount;
}
void BankAccount::display()
{
system("cls");
cout << "Information" << endl;
cout << "" << endl;
cout << "Bank Name:" << bankName << endl;
cout << "Bank Type:" << bankType << endl;
cout << "Acount No:" << accountNumber << endl;
cout << "Depositor Name:" << depositorName << endl;
cout << "Total Balance is:" << totalBalance << " RS" << endl;
}
int _tmain(int argc, _TCHAR* argv[])
{
int a;
BankAccount b1;
do{
system("cls");
cout << "Bank Account Information" << endl;
cout << "------------------------" << endl;
cout << "1>. Open a New Account" << endl;
cout << "2>. Deposite An Amount" << endl;
cout << "3>. Withdraw An Amount" << endl;
cout << "4>. Check Your Account Balance" << endl;
cout << "5>. Go Home or Exit" << endl;
cout << "" << endl;
cout << "Enter Your Choice:";
cin >> a;
switch (a)
{
case 1:
b1.setData();
break;
case 2:
b1.deposite();
break;
case 3:
b1.withdraw();
break;
case 4:
b1.display();
break;
case 5:
exit(0);
default:
cout << "Please Enter The Correct Choice!..";
}
system("pause");
} while (a != 5);
_getch();
return 0;
}
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us