Question is in the picture. #include using namespace std; class Product { private: double price; int weight; public: void info() { cout <
OOPs
In today's technology-driven world, computer programming skills are in high demand. The object-oriented programming (OOP) approach is very much useful while designing and maintaining software programs. Object-oriented programming (OOP) is a basic programming paradigm that almost every developer has used at some stage in their career.
Constructor
The easiest way to think of a constructor in object-oriented programming (OOP) languages is:
Question is in the picture.
#include <iostream>
using namespace std;
class Product
{
private:
double price;
int weight;
public:
void info() {
cout <<price<<", "<<weight;
}
};
class Fruit
{
public:
string type;
void setInfo(double p, int w) {
price = p;
weight = w;
}
};
int main() {
Fruit obj;
obj.type = "Apple";
obj.setInfo(4.99, 10);
obj.info();
}
Step by step
Solved in 2 steps with 1 images