草庐IT

using-declaration

全部标签

c++ - 不合格的名称查找 : Why local declaration hides declaration from using directive

考虑这段代码:namespaceA{inti=24;}namespaceB{usingnamespaceA;inti=11;intk=i;//findsB::i,noambiguity}和basic.lookup.unqual.2:§6.4.1Unqualifiednamelookup[basic.lookup.unqual]Thedeclarationsfromthenamespacenominatedbyausing-directivebecomevisibleinanamespaceenclosingtheusing-directive;see[namespace.udir].F

c++ - 前向声明的类型和 "non-class type as already been declared as a class type"

我对以下代码有疑问:templatevoidfoo(structbar&b);structbar{};intmain(){}它在GCC上编译成功,但在MSVC(2008)上编译失败并出现以下错误:C2990:“bar”:已声明为类类型的非类类型是代码错误还是MSVC中的错误?如果我在模板定义之前添加structbar;就可以了。 最佳答案 我们有我们的赢家:https://connect.microsoft.com/VisualStudio/feedback/details/668430/forward-declared-type-

c++ - Clang VS VC++ :"error: declaration of ' T'阴影模板参数”

我正在尝试为theclassiccopy&swapidiom编译以下代码在我的Mac上使用clang3.3templateclassnode{private:node*left;node*right;Tvalue;public:friendvoidswap(node&,node&);//otherstuff}然而链接器却报错了。我现在明白我应该将函数声明为模板。但是,如果我按照建议的样式进行操作,则会发生错误here来自MSDN:templateclassArray{T*array;intsize;public:template//...templatefriendArray*comb

c++ - 在没有 USES_CONVERSTION 的情况下从 const char * 转换为 LPTSTR

我正在尝试将constchar*转换为LPTSTR。但我不想使用USES_CONVERSION来执行它。以下是我使用USES_CONVERSION进行转换的代码。有没有办法使用sprintf或tcscpy等进行转换?USES_CONVERSION;jstringJavaStringVal=(somevaluepassedfromotherfunction);constchar*constCharStr=env->GetStringUTFChars(JavaStringVal,0);LPTSTRlpwstrVal=CA2T(constCharStr);//Idonotwanttouset

c++ - 使用和重载基类的模板成员函数?

在下面,structY重载了X的成员函数f。两个重载都是模板函数,但采用不同的参数(typename和int),需要明确指定:structX{templatestaticboolf(){returntrue;}};structY:publicX{usingX::f;templatestaticboolf(){returnfalse;}};intmain(){std::cout()()这会按预期使用gcc打印10。然而,clang(3.3)提示说[...]error:nomatchingfunctionforcallto'f'std::cout()()staticboolf(){retu

c++ - 错误 : variable or field ‘myfunction’ declared void

这个问题在这里已经有了答案:variableorfielddeclaredvoid(6个答案)关闭7年前。在下文中,我没有定义类型doesntexist。voidmyfunction(doesntexistargument){}GCC4.7.2说“error:variableorfield‘myfunction’declaredvoid”我的问题是:编译器在这里指代函数名称为void而不是参数类型是怎么想的?[编辑]在投票之前,请注意这个问题的答案与错误的顺序和-Wfatal-errors停止打印更直接相关的消息有关。这不仅仅是我在尝试一个稍微模糊的编译器消息。

c++ - 错误 C4703 : potentially uninitialized local pointer variable 'pNamesPtr' used

我正在做一个加密项目,在尝试编译程序时遇到了以下错误。main.cpp(520):errorC4703:potentiallyuninitializedlocalpointervariable'pNamesPtr'used==========Build:0succeeded,1failed,0up-to-date,0skipped==========DLLNAMES[i].UsedAlready=0;}*dwOutSize=(DWORD)pNamesPtr-(DWORD)pBuffer;//*有人可以帮我解决这个错误吗?您是否需要更多代码才能得到好的答案?

c++ - 如何在 C++ 函数之外限制 `using` 语句的范围?

我想定义一些模板特化的静态成员,像这样:namespaceA{templateintC::member1_=5;templateintC::member2_=5;templateintC::member3_=5;templateintC::member1_=6;templateintC::member2_=6;templateintC::member3_=6;...}但为了简化代码(并使其看起来更有条理),我想做这样的事情:namespaceA{{usingT=A1::A2::...::MyClass1;templateintC::member1_=5;templateintC::me

c++ - 为什么编译器说 : 'enable_if' cannot be used to disable this declaration

templateusingEnable_if=typenamestd::enable_if::type;classDegree;templateconstexprinlineboolIs_Degree(){returnstd::is_base_of::value;}classDegree{public:std::size_tinDeg=0;};templateclassVertex:publicSatellite{public:explicitVertex(intnum):n(num){}private:std::size_tn;};templateclassEdge{public:/

C++ 命名空间 - "using"或明确说明?

这个问题在这里已经有了答案:关闭12年前。PossibleDuplicates:Whyis‘usingnamespacestd;’consideredabadpracticeinC++?UsingstdNamespace这只是一个偏好问题吗?或者是否有更喜欢的正当理由usingnamespacestd;#includemyStringstring;或#includemyStringstd::string;我想每次都显式声明命名空间,同时拖动输入,避免了任何可能的名称冲突(或者编译器会警告歧义吗?)问题:是否有令人信服的论据?