Tag: static
-
JavaNon-access modifiers
Non-access modifiers provide the JVM with information about a class, method, or variable’s characteristics. In Java, there are seven different…
May 17, 2022
-
JavaStatic keyword in Java
In Java, the static keyword is mostly used to control memory. It is also used to share a class’s identical…
May 28, 2022
-
JavaSub packages in Java
The subpackage is a package within a package. It should be developed to further categorize the package. Sub packages are…
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
-
C++Storage classes in C++
Storage classes in C++ are type specifiers that aid in defining the lifetime and visibility of variables and functions within…
October 1, 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