In C++, default parameters allow you to give a default value to a parameter in a function or constructor, so that it uses this default when no argument is provided for the parameter. This can make your code more flexible and easier to use because you can call functions or constructors without specifying every single argument, relying on defaults where applicable.
This feature is very useful in simplifying object creation, especially when many parameters have logical default values.
With default parameters, you only specify the argument you want to change, allowing you to omit others that can safely assume default values.
### Example in a Constructor
Let's consider the Inventory class example. The constructor is designed to initialize the object’s member variables with default values in case no arguments are provided during object creation:
```cpp
Inventory(int id = 0, std::string desc = "No description", int qty = 0)
```
- id - defaults to 0, assuming it's a code for uninitialized products.
- desc - defaults to "No description", offering a generic placeholder when no description is available.
- qty - defaults to 0, indicating no stock available by default.
Default parameters embody the principle of providing meaningful defaults, simplifying the interaction required to create objects of the class.