All posts by admin

java static nested class, static inner class.

Avoid Package with One class By Static Nested Class


In the previous post, we discussed on inner class for “one and only for” relationship among the classes. But static nested class not for same purpose, it is to add namespace to the class.  It can be instantiated just with top class name (without top class instance).  Static nested class is class scoped within another.

RDBMS Relational database management system

RDBMS => ( Relational Database + Enterprise Services + SQL Queries)


In the digital world, different types of database management system exist to manage the data. In these groups, Relational database management is popular and easy to manage organization transaction data.  RDBMS to create, update, and administer a relational database.  Relational database management systems use the SQL language to access and manage the database(DB). Relational Database:

Shallow copy of java objects

Shallow vs Deep Copy of Object by Clone() method


Previous post, we discussed on intention to create copy of object in java. In this post,we would discuss on different implementation of object copying. Before discuss on implementation, let us discuss on basic rule of clone copy implementation. 1) Copy of object and actual object should not refer at same object. If it is same,