代码搜索:using 有哪些应用?

找到约 10,000 项符合「using 有哪些应用?」的源代码

代码结果 10,000
www.eeworm.com/read/190666/5173392

c using3.c

// Build don't link: struct A{ A(); }; typedef struct { A i; } S; struct B: S{ using S::S; // ERROR - no such field };
www.eeworm.com/read/190666/5173438

c using5.c

// Build don't link: // Based on bug report by Klaus-Georg Adams // struct bar { typedef bar t; }; struct foo : bar { using bar::t; t field; t me
www.eeworm.com/read/190666/5173844

c using2.c

// Build don't link: // // Copyright (C) 2001 Free Software Foundation, Inc. // Contributed by Nathan Sidwell 22 May 2001 // Bug 2184. Using decls in templates weren't doin
www.eeworm.com/read/190666/5174120

c using1.c

// Copyright (C) 2001 Free Software Foundation, Inc. // Contributed by Nathan Sidwell 26 Feb 2001 // Bug 1981. using declarations in namespace scope were not remembered. na
www.eeworm.com/read/190666/5174289

c using9.c

// Test for proper merging of functions from multiple using directives. // Build don't link: namespace standard { void print(int) {}; void dump(int) {}; } namespace A { using standard::print; }
www.eeworm.com/read/190666/5174293

c using4.c

//Build don't link #include namespace csp { using namespace std::vector; // ERROR - vector is not a namespace }
www.eeworm.com/read/190666/5174296

c using13.c

namespace A{ void foo(int){} } namespace B{ void foo(bool){} } void bar() { using B::foo; using A::foo; foo(true); } namespace Foo { template void Hello(N) {} } int main() { u
www.eeworm.com/read/190666/5174306

c using8.c

// Build don't link: namespace M { int i; } namespace N { using namespace M; } using namespace N; int j = i; namespace O{ int k; } namespace N { using namespace O; } int l = k;
www.eeworm.com/read/190666/5174310

c using7.c

namespace X{ void f(int){} } void f(); int main() { using X::f; f(3); }
www.eeworm.com/read/190666/5174313

c using6.c

//Build don't link: #include namespace csp { using namespace std; struct X { vector v; }; }