Tag: class
-
JavaJava object creation methods
Everything revolves around the object in Java, which is an object-oriented language. An object represents a class’s runtime entity and…
May 8, 2022
-
JavaRegular class vs static nested class
Comparison between a normal or regular class and a static nested class. S.NO Normal/Regular inner class Static nested class 1….
June 11, 2022
-
JavaAbstract class vs Concrete class
Following are the important differences between an abstract class and a concrete class. Sr. No. Key Abstract Class Concrete Class…
June 11, 2022
-
JavaJava.lang.ThreadGroup- class in Java
A group of threads is created by ThreadGroup class. It provides a practical method for controlling thread groups collectively. This…
July 11, 2022
-
JavaJava.util.Collections Class
The Java Collections Framework includes the Collections class in the Java.util.Collections package. The static methods that work with collections or return…
July 22, 2022
-
JavaLinkedHashSet class in Java Collection Framework
The LinkedHashSet class is an ordered HashSet with a doubly-linked List across all entries. This class is used when the…
July 30, 2022
-
JavaTreemap class in Java Collection Framework
Along with the AbstractMap Class, the TreeMap class in Java is used to implement the Map interface and NavigableMap. Depending…
August 2, 2022
-
C++static keyword in C++
When the static keyword is used, variable or data members or functions can no longer be changed. It is allocated…
October 14, 2022
-
C++Mutable keyword in C++
Mutable data members are those whose values can be changed in runtime even if the object’s type is constant. It…
October 16, 2022
-
C++Inheritance in C++
Inheritance refers to a class’s ability to derive properties and characteristics from another class. One of the most important aspects…
October 21, 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
-
PythonPython Class
As we discussed in the previous tutorial, a class is a virtual entity that can be thought of as an…
December 8, 2022