The `using` directive, available in several languages including C# and C++, introduces members of a namespace into the current identifier search scope.
2
votes
2answers
79 views
Why does removing using namespace std cause errors in my project?
I have a problem with including header files in C++. As far as I know, it's not a good design to put using namespace std inside header but I got some error when I try to remove it. Here is my code in ...
0
votes
2answers
51 views
Remove 'using System.Linq' statment from all C# pages
I have this source in all the c# pages
using System;
using System.Collections.Generic;
using System.Linq;
using System.Data;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
...
0
votes
0answers
20 views
Is it possible “Using with alias at runtime”?
namespace
{
using Itest = IMyInterface
}
Then I use the Itest for rest of code But as per new requirement,
based on some conditions i need to set the alias at runtime. >Like
using ...
1
vote
4answers
106 views
In C#, is it more performant to use fully qualified names vs the 'using' directive?
In C#, when you add a using directive for a namespace, it gives you access to all the types in that specific namespace. However, if the namespace has a lot of types and I only need one particular one, ...
2
votes
3answers
620 views
How to properly bind scope between directive and controller with angularJS
I'm trying to generate an n-level hierarchical unordered list with anugularJS, and have been able to successfully do so. But now, I'm having scope issues between the directive and controller. I need ...
0
votes
0answers
48 views
Why can't I use using to disambiguate between base members variables?
In this simple class hierarchy I'm trying to get class C to disambiguate which x to use by telling it "using B::x" but this doesn't compile in G++ because it still can't figure out which x I mean in ...
9
votes
1answer
126 views
What is the namespace 'Standard'?
When I try to write a new using clause, I notice that Intellisense has, in its list, a namespace called Standard. However, this seems to have no members on closer inspection. What is this namespace?
1
vote
1answer
140 views
Converting GCC assembly code to armasm assembly code
I am trying to convert GCC assembly code to ARMASM assembly code can anyone please help me with this. The main problem is .req .unreq .qn.dn . I wanted to know the equivalents of the above ...
5
votes
5answers
225 views
why swap() can work well when I don't call it with two pointer?
#include <iostream>
using namespace std;
void swap(int *a, int *b){
*a = *a^*b;
*b = *a^*b;
*a = *a^*b;
}
int main()
{
int array[]={1,9,2,8,3,7};
for(int i=0; ...
11
votes
1answer
214 views
static constexpr member function in templated using expression not found
For the following code
#include <array>
template<unsigned MaxP, typename type>
struct kernel
{
static constexpr unsigned max_pole(unsigned P)
{ return P>MaxP? MaxP:P; }
...
5
votes
2answers
123 views
Forward declarations cause errors after code refactor
My original class structure was similar to:
//def.h
namespace A
{
struct X {};
}
and forward declarations where needed:
//file that needs forward declarations
namespace A { struct X; }
After ...
1
vote
1answer
77 views
include and using declaration
using ::bb::cascades::Application;
#include <bb/cascades/Application>
What do these two declaration mean?
And are there any good tutorials which states the using directive/declaration ...
3
votes
2answers
66 views
Is it possible to revert back to “default” global namespace?
Basically, I am working with some provided header files with the following format:
#include <iostream>
using namespace std;
class bar
{
public:
void printSomething(void)
{
...
3
votes
2answers
75 views
Using-like statement for template specialization
Suppose there is the following definition in a header
namespace someNamespace {
template<class T, class S>
int operator + (const T & t, const S & s) {
return specialAdd ...
1
vote
6answers
205 views
C# using system.io not woking in my class but works in main
I am working on an issue I do not remember ever having before.
I am using VS2012 C#
When i add using System.IO; to my main program everything works fine, however when I add it to my class file it ...
2
votes
1answer
148 views
why it is not possible to implement inherited pure virtual method with 'using' directive? [duplicate]
Possible Duplicate:
Why does C++ not let baseclasses implement a derived class' inherited interface?
#include <iostream>
class Interface
{
public:
virtual void yell(void) = ...
3
votes
2answers
199 views
Why does ADL take precedence over a function in 'std namespace' but is equal to function in user-defined namespace?
I have two snippets for ADL for demo purposes. Both snippets have been compiled by VC10, gcc & comeau C++ compilers, and the result are the same for all three.
<1>ADL against using directive ...
3
votes
2answers
195 views
Scope of the c++ using directive
From section 7.3.4.2 of the c++11 standard:
A using-directive specifies that the names in the nominated namespace
can be used in the scope in which the using-directive appears after
the ...
0
votes
1answer
94 views
Are all using directives viewed the same way as using namespace std?
I've easily gotten myself into the habit of prefixing standard identifiers with std:: instead of sticking in a using namespace std;. However, I've started getting into C# and I've noticed that it's ...
2
votes
2answers
5k views
Angularjs - Dynamically change dom with directives or widgets?
my goal is to understand how to use angularJS correctly. I want to be able to tie a selection of variable to dynamically changing the DOM structure using angularJS. I dont think I'm quite ...
5
votes
1answer
983 views
C++11 `using` keyword: specialize template alias of template parameter
I had a problem today using the using keyword in C++11. I decided to use another approach now (added as comments in the example below). You can think of X as a matrix, of Y as a mixin and the aim is ...
0
votes
2answers
118 views
Using directive in Derived Class changes inheritance to Public
A very simple question but yet confusing:
Why does a stupid using directive change the inheritance!?
This compiles with Comeau...
I have read that a using directive (decleration?) makes the variable ...
0
votes
3answers
241 views
Why is the “using” directive still needed in C++11 to bring forward methods from the base class that are overloaded in the derived class
The example below gets the following compiled error:
test.cpp: In function ‘int main(int, char**)’:
test.cpp:26:8: error: no match for call to ‘(Derived) (p1&)’
test.cpp:14:8: note: candidate is:
...
1
vote
1answer
1k views
C++ 'typedef' vs. 'using … = …' [duplicate]
Possible Duplicate:
What are the differences between typedef and using in C++11?
The following code compiles and runs. My question is what is the difference between the "typedef" and ...
1
vote
2answers
95 views
Is it possible to declare a recursive using alias directive in C#?
This example gives a "The type or namespace name 'MyType' could not be found (are you missing a using directive or an assembly reference?)"
using MyType = System.Func<System.Int32, ...
3
votes
2answers
178 views
Is using namespace in an anonymous namespace safe?
In "using namespace" statement inside an anonymous namespace it was aked whether the following is legal
//file.cpp
//....
namespace
{
using namespace std;
}
int a(){
cout << ...
28
votes
4answers
2k views
C++: Should I use 'typedef' or 'using namespace'? [closed]
I am writing a library with mutiple dependent modules. When I include a file from a different module, should I resolve the namespace with:
using namespace project1::namespace1;
class1 obj;
or
...
2
votes
1answer
85 views
Global “using SpriteBatch = MySpriteBatch” for all file's, not per file
In my XNA game, I have extended SpriteBatch to override some of the functions to do what I want, and added a few of my own.
I wanted force other members to use this class without having to change all ...
0
votes
4answers
171 views
“using namespace std;” before any #include? [duplicate]
Possible Duplicate:
Ordering of using namespace std; and includes?
I can remember that I read a tutorial that started all its source files with
using namespace std;
When I tested that ...
7
votes
2answers
190 views
Why can't I write IO.Directory.GetFiles?
I come from a VB.Net environment, where using Imports System and then IO.Directory.GetFiles(...) works.
On the other hand, it seems that using System; is not sufficient to write use IO.Directory ...
0
votes
1answer
87 views
what does “$” mean in this SSI conditional statement?
I was reading about SSI here. The first code example under the section Control Directives looks like this:
<!--#if expr="${Sec_Nav}" -->
<!--#include virtual="" -->
<!--#endif -->
...
2
votes
2answers
410 views
VB.NET namespace abbreviation: How do I make this work in equivalent C# code?
I am a VB.NET programmer by nature and I am having a hard time figuring this out. Any help with the following would be appreciated.
I need to get the C# code (1) below to work. The VB.NET equivalent ...
0
votes
2answers
124 views
c++ using declaration keyword usage seen in the examples of Boost library
i have noticed that
#include <iostream>
#include <boost/array.hpp>
#include <boost/asio.hpp>
using boost::asio::ip::tcp;
int main(int argc, char* argv[]){
....
}
uses using ...
2
votes
2answers
53 views
Load imports outside/inside of namespace if there is only one?
I got ONLY 1 Namespace and these 2 different codes :
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Reflection;
using System.IO;
namespace blabla
...
2
votes
4answers
459 views
How to use 'Using' keyword in ASP.NET page without code behind
I want to include some namespaces with their classes in my asp.net application. It is possible with using keyword ?
I have this:
<asp:Content ID="Content2" ContentPlaceHolderID="MainContent" ...
5
votes
2answers
132 views
Using Directive to declare a pseudo-type in C#
I inherited some source code that I am just starting to dig though, and i found the previous owner has made some use of the using directive as an alias for a List<T>, but I've never seen this ...
1
vote
1answer
123 views
Operating System Directive in Delphi Prism
Since I am writing a program that will eventually run on Windows and Linux environment compiled from the same project files, I wanted to test and see how well the Operating System directives are. So, ...
2
votes
2answers
159 views
Javascript: besides “use strict”, which other “use” directives are there?
Besides use strict, which other use directives are there?
(Apparently my short question doesn't meet StackOverflow's quality standards so I have to add this sentence and more to allow me to post ...
7
votes
6answers
772 views
Ordering of using namespace std; and includes?
I recently saw this code being used in a source file in a C++ project:
using namespace std;
#include <iostream>
Ignoring all issues of whether it's a good idea to have using namespace std at ...
8
votes
7answers
1k views
where to put using namespace std;
I'm wondering where to put using namespace std;. I saw a code with the using namespace std; in the int main(){} but I was putting it after #include <iostream>. Where should I put it and does ...
1
vote
2answers
516 views
Difference between 'using' and '#using' directive?
According to MSDN is:
The using directive has two uses:
1)To allow the use of types in a
namespace so that you do not have to
qualify the use of a type in that
namespace:
using ...
0
votes
1answer
183 views
Dynamically loading style sheets based on Server Controls
I have a website that will need to load basic style components based on the model (determined on backend SQL server based on user input)
The concept is that this website can contained parameterized ...
4
votes
6answers
444 views
Why is std:: used by experienced coders rather than using namespace std;? [duplicate]
Possible Duplicate:
Why is 'using namespace std;' considered a bad practice in C++?
The other day when I asked a question someone replied saying if someone asks a question, show ...
3
votes
2answers
749 views
When do we need to put using directives inside a namespace scope?
I don't know why Asp.net MVC developers put the using directives inside System.Web.Mvc namespace as follows.
namespace System.Web.Mvc
{
using System;
using System.Collections.ObjectModel;
...
7
votes
5answers
232 views
Ways to make use of 'using' directives in C# less tedious
Good programming practice these days tends to mean splitting your stuff up into lots of assemblies and namespaces (for example, see S#arp Architecture, MVC, etc.). However a side-effect of that is ...
134
votes
12answers
95k views
the type or namespace name could not be found
I have a C# solution composed of several projects in Visual Studio 2010.
One is a "Test" project (I'll call it "PrjTest"), the other is a Windows Forms Application project (I'll call it "PrjForm"). ...
0
votes
1answer
500 views
What's the use of #ifdef and #endif processor directives in iPhone?
I want to know about the use of #ifdef, #ifndef and #endif and which case, have to used those conditionals and what's the use of it? Whats the difference between the #ifdef and #ifndef?
For eg:
...
7
votes
4answers
2k views
Scoped using-directive within a struct/class declaration?
I find that my C++ header files are quite hard to read (and really tedious to type) with all the fully-qualified types (which goes as deep as 4 nested namespaces). This is the question (all the ...
15
votes
5answers
2k views
What's the purpose of: “using namespace”?
There are convincing arguments against using namespace std, so why was it introduced into the language at all? Doesn't using namespace defeat the purpose of namespaces? Why would I ever want to write ...
9
votes
1answer
2k views
Using directive to specify class alias in C++/CLI
In C#, there are three types of using directives:
using System; // Specify Namespace
using Diag = System.Diagnostics; // Specify Namespace Alias
using DBG = System.Diagnostics.Debug; // Specify ...


