代码搜索:using 开发教程
找到约 10,000 项符合「using 开发教程」的源代码
代码结果 10,000
www.eeworm.com/read/470720/1446522
c using6.c
//Build don't link:
#include
namespace csp {
using namespace std;
struct X {
vector v;
};
}
www.eeworm.com/read/470720/1446536
c using2.c
// Build don't link:
void f();
namespace A{
using ::f;
}
www.eeworm.com/read/470720/1446543
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/470720/1446545
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/470720/1446549
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/470720/1446551
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/470720/1446565
c using1.c
// Build don't link:
using namespace bb; // ERROR - .*
www.eeworm.com/read/470720/1446568
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/470720/1446582
c using5.c
// Build don't link:
namespace a {
class b {
using std::c; //ERROR - namespace using on class level
};
}
www.eeworm.com/read/470693/1456333
c using2.c
// Copyright (C) 2001 Free Software Foundation, Inc.
//
// This file is part of the GNU ISO C++ Library. This library is free
// software; you can redistribute it and/or modify it under the
// terms