Skip to content

Hospital Management System using Object Oriented Programming in C++. Demonstrated Inheritance, Polymorphism, Abstraction & Data hiding OOP principles .Implemented Exception Handling and File Handline; used Virtual Base Class and Friend functions

Notifications You must be signed in to change notification settings

atumat/Hospital-Management

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

56 Commits
 
 
 
 

Repository files navigation

Hospital Management System

Hospital Management System is a system enabling hospitals to manage information and data related to all aspects of healthcare – processes, providers, patients, and more.

Object Oriented Programming

Object-oriented programming is essentially a concept or technique for computer programming that models software architecture around data or objects rather than functions and logic.A data field is referred to as an object if it has distinct characteristics and behaviour. In OOP, everything is categorised as objects.

Among developers, it is the most often used programming paradigm. Large, complicated, and actively updated or maintained programmes work well with it. It provides fundamental ideas like abstraction, inheritance, polymorphism, and encapsulation, which make programme creation and maintenance easier. These fundamental ideas define OOP.

User-defined data types called classes serve as the building blocks for specific objects, properties, and methods. Objects are instances of a class that were generated using data that was defined. Objects can be an abstract concept or a real-world thing. 

Exception Handling

Exception handling in C++ consist of three keywords: try, throw and catch:

  1. The try statement allows you to define a block of code to be tested for errors while it is being executed.
  2. The throw keyword throws an exception when a problem is detected, which lets us create a custom error.
  3. The catch statement allows you to define a block of code to be executed, if an error occurs in the try block.

About

Hospital Management System using Object Oriented Programming in C++. Demonstrated Inheritance, Polymorphism, Abstraction & Data hiding OOP principles .Implemented Exception Handling and File Handline; used Virtual Base Class and Friend functions

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages