Exception Handling
What is an Exception?
Definition:
“When an unusual, irregular, abnormal or nonstandard condition arises in a sequence of code at run time this phenomenon is referred as Exception handling”
An exception is a runtime error.
In Object Oriented, an exception is an object that is used to describes an exceptional condition that has occurred in a piece of code.
Surigao Education Center Stock Inventory System
Open Cash Drawer(POS)
Skins and themes in ASP.NET
Converting domain names to IP addresses
Using System.net;
Interfaces
Definition:
In java programming language, an interface is an abstract, conceptual or concrete type that is used to specify an interface.
How to use an interface:
- By using the key word interface, we can fully abstract a class interface from its implementation.
It means that, using interface, we can specify what a class must do, but not how it does it.
Inheritance
What is inheritance?
Inheritance is a process which allows inheriting the methods and properties of parent or super class.
OR
Deriving an object from an existing class (super class)
Classes in Java
Class
In Object Oriented programming, “class is a blue print that is used to create objects”
A class is a collection of things that share common attributes like class of students.
Some characteristic of a class