代码搜索:using 开发教程
找到约 10,000 项符合「using 开发教程」的源代码
代码结果 10,000
www.eeworm.com/read/470693/1458468
c using6.c
//Build don't link:
#include
namespace csp {
using namespace std;
struct X {
vector v;
};
}
www.eeworm.com/read/470693/1458482
c using2.c
// Build don't link:
void f();
namespace A{
using ::f;
}
www.eeworm.com/read/470693/1458489
c using10.c
//Build don't link:
//Based on a report by Helmut Jarausch
template
class foo{};
namespace ABC
{
using ::foo;
}
www.eeworm.com/read/470693/1458491
c using11.c
// Build don't link:
class joey {
public:
typedef int SVec;
};
using joey::SVec; // ERROR - joey is not a namespace
www.eeworm.com/read/470693/1458495
c using14.c
// Build don't link:
// Origin: Mark Mitchell
extern "C" void f ();
namespace N {
extern "C" void f ();
}
using N::f;
void g ()
{
f ();
}
www.eeworm.com/read/470693/1458497
c using12.c
// Build don't link:
// Origin: Brendan Kehoe
namespace foo
{
void x (bool); // ERROR - candidates
void x (char); // ERROR - candidates
void x (int); // ERROR
www.eeworm.com/read/470693/1458511
c using1.c
// Build don't link:
using namespace bb; // ERROR - .*
www.eeworm.com/read/470693/1458514
c using3.c
// Build don't link:
typedef unsigned int atypedef;
struct astruct{};
void afunction();
void aovlfunction();
void aovlfunction(int);
int avariable;
namespace foo {
using ::atypedef;
using ::astr
www.eeworm.com/read/470693/1458528
c using5.c
// Build don't link:
namespace a {
class b {
using std::c; //ERROR - namespace using on class level
};
}