what does this mean?
-
Here is a sentence: using namespace std Could you tell me what is its meaning?
-
Here is a sentence: using namespace std Could you tell me what is its meaning?
Hi, "using namespace std;" means in ur program u r using namespace called as "std" provided by microsoft. all STL functionality u will get under this namespace. Why we use namespaces? :-) To avoid name collision. Compiler tries to interpret objects or function calls user namespace if specified else searches in global namespace by default. More info is given in MSDN. :) The chosen One :)
-
Hi, "using namespace std;" means in ur program u r using namespace called as "std" provided by microsoft. all STL functionality u will get under this namespace. Why we use namespaces? :-) To avoid name collision. Compiler tries to interpret objects or function calls user namespace if specified else searches in global namespace by default. More info is given in MSDN. :) The chosen One :)
Oh,I see Thank you In fact, I haven't found the result from MSDN as to using namespace std :) Thank you again
-
Oh,I see Thank you In fact, I haven't found the result from MSDN as to using namespace std :) Thank you again
shalala wrote: In fact, I haven't found the result from MSDN as to using namespace std Try here: http://msdn.microsoft.com/library/en-us/vclang98/html/\_pluslang\_using\_declaration.asp?frame=true http://msdn.microsoft.com/library/en-us/vclang98/html/\_pluslang\_using\_directive.asp?frame=true
Five birds are sitting on a fence. Three of them decide to fly off. How many are left?
-
shalala wrote: In fact, I haven't found the result from MSDN as to using namespace std Try here: http://msdn.microsoft.com/library/en-us/vclang98/html/\_pluslang\_using\_declaration.asp?frame=true http://msdn.microsoft.com/library/en-us/vclang98/html/\_pluslang\_using\_directive.asp?frame=true
Five birds are sitting on a fence. Three of them decide to fly off. How many are left?
Thanks you very much! :rose::rose::rose: