InterviewSolution
Saved Bookmarks
| 1. |
How To Give An Alternate Name To A Namespace? |
|
Answer» An alternate name given to namespace is called a namespace-alias. namespace-alias is generally used to save the typing effort when the NAMES of NAMESPACES are very long or COMPLEX. The following syntax is used to give an alias to a namespace. namespace MYNAME = my_old_very_long_name ;An alternate name given to namespace is called a namespace-alias. namespace-alias is generally used to save the typing effort when the names of namespaces are very long or complex. The following syntax is used to give an alias to a namespace. |
|