代码搜索:Namespace
找到约 10,000 项符合「Namespace」的源代码
代码结果 10,000
www.eeworm.com/read/271797/4222695
txt example_namespace.csproj.filelist.txt
obj\Debug\Example_namespace.exe
obj\Debug\Example_namespace.pdb
bin\Debug\Example_namespace.exe
bin\Debug\Example_namespace.pdb
obj\Debug\ResolveAssemblyReference.cache
www.eeworm.com/read/446555/1711953
svn-base namespace2.cc.svn-base
#include "a.h"
#include "b.h"
int main() {
using A::f; /* declaration - brings A::f() into scope */
f();
using namespace B; /* directive - brings all of
B into scope */
g(); /* o
www.eeworm.com/read/446555/1711954
svn-base namespace3.cc.svn-base
#include "a.h"
#include "b.h"
int main() {
using namespace A; /* brings all of A into scope */
f();
using namespace B; /* brings all of B into scope */
g();
f();
}
/
www.eeworm.com/read/446555/1711956
svn-base namespace1.cc.svn-base
#include "a.h"
#include "b.h"
int main() {
A::f();
B::g();
}
/*OUT
f from A
g from B
*/
www.eeworm.com/read/423469/2027068
3 namespace_check_screen_xxx.3
.TH "check_screen_XXX" 3 "27 Sep 2002" "FrameBufferLibrary (FBL)" \" -*- nroff -*-
.ad l
.nh
.SH NAME
check_screen_XXX \-
.SH SYNOPSIS
.br
.PP
.SH DETAILED DESCRIPTION
.PP
Fill a \fBFBL_Screen\fR st
www.eeworm.com/read/375190/2738581
cpp hash_global_namespace_test.cpp
// Copyright 2006-2008 Daniel James.
// Distributed under the Boost Software License, Version 1.0. (See accompanying
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
// This
www.eeworm.com/read/366702/2866252
c gnu-inline-anon-namespace.c
/* { dg-do compile } */
/* { dg-options "-O" } */ // such that static functions are optimized out
/* { dg-final { scan-assembler-not "func1" } } */
/* { dg-final { scan-assembler-not "func2" } } */
/*
www.eeworm.com/read/266116/11239886
cpp demo_namespace_4_b.cpp
//*******************************************************************************
// 命名空间: 使用using namespace省略命名空间名的限定
// 注意:同一作用域中用using namespace声明的不同命名空间的成员中不能有同名的成员
//************************
www.eeworm.com/read/266116/11239889
hpp demo_namespace_head2.hpp
//****************************************************
# include
# include
using namespace std;
class Student
{
public:
Student(int n,string nam,char s)
{
num=n;n