Categories:
.NET (357)
C (330)
C++ (183)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (1)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
What problem does the namespace feature solve?
What problem does the namespace feature solve?
✍: Guest
Multiple providers of libraries might use common global identifiers causing a name collision when an application tries to link with two or more such libraries. The namespace feature surrounds a library’s external declarations with a unique namespace that eliminates the potential for those collisions.
This solution assumes that two library vendors don’t use the same namespace identifier, of course.
2012-03-22, 2668👍, 0💬
Popular Posts:
How do you locate the first X in a string txt? A) txt.find('X'); B) txt.locate('X'); C) txt.indexOf(...
How can method defined in multiple base classes with same name be invoked from derived class simulta...
Advantages of a macro over a function? Macro gets to see the Compilation environment, so it can expa...
What will happen in these three cases? if (a=0) { //somecode } if (a==0) { //do something } if (a===...
What is page thrashing? Some operating systems (such as UNIX or Windows in enhanced mode) use virtua...