Tag: OOPs
-
JavaInterface in Java
In Java, an interface is a blueprint for a class. It has abstract methods and static constants. In Java, the…
June 3, 2022
-
JavaInterface vs Abstract class
As we all know, abstraction refers to hiding the internal implementation of a feature and only giving the users the…
June 3, 2022
-
JavaNested Class in Java
It is possible to define a class within another class in Java, and these classes are referred to as nested…
June 11, 2022
-
JavaWrapper Class in Java
A Wrapper class is one whose object contains or wraps primitive data types. When we create an object for a…
August 20, 2022
-
JavaShort class in Java
The Short class is a wrapper class for the primitive type short. It contains several methods for dealing with short…
August 27, 2022
-
JavaFloat class in Java
The Float class is a wrapper class for the primitive type float. It contains several methods for dealing with float…
August 27, 2022
-
JavaDouble class in Java
The Double class is a wrapper class for the primitive type double. It contains several methods for dealing with double…
August 27, 2022
-
JavaBoolean class in Java
In java.lang package, there is a wrapper class Boolean. A value of the primitive type boolean is wrapped in an…
August 27, 2022
-
JavaCharacter class in Java
In java.lang package, Java includes a wrapper class called Character. A single field of type char is contained in a…
August 27, 2022
-
C++OOPs Concepts in C++
Object-oriented programming (OOPs) is a programming approach or pattern in which programs are structured around objects rather than functions and…
September 20, 2022
-
PythonObject-Oriented Programming in Python
What Is Object-Oriented Programming? Alan Kay coined the term “Object-Oriented Programming” (OOP), also known as oops concepts in Python, in…
December 8, 2022
-
PythonAccess Modifiers in Python
When implementing the concepts of inheritance in Python code, access specifiers or access modifiers are used to restrict the access…
December 13, 2022