代码搜索:Namespace
找到约 10,000 项符合「Namespace」的源代码
代码结果 10,000
www.eeworm.com/read/314528/13564922
txt using namespace.txt
using <mark>namespace</mark> std;这个指令是说,从源程序的这个地方开始,可以使用命名空间std中的名称。
C++标准库中的实体都是在命名空间std中定义的,所以标准库中的所有实体名都是用std来限定的。
如:cout的全名就是std::cout。
你在前面加上了using <mark>namespace</mark> std;后就可以直接用cout来代替std::cout。如果不加上using names ...
www.eeworm.com/read/306033/13754453
htm demo_namespace.htm
paxScript Demo. Namespaces, Modularity and Cross-language Programming.
Example
www.eeworm.com/read/147331/5731389
h un-namespace.h
/*
* Copyright (c) 2001 Daniel Eischen .
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided
www.eeworm.com/read/147331/5731584
h un-namespace.h
/*
* Copyright (c) 2001 Daniel Eischen .
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided
www.eeworm.com/read/139332/5802626
hpp add_to_namespace.hpp
// Copyright David Abrahams 2002.
// 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)
#ifndef AD
www.eeworm.com/read/136989/5830391
cpp namespace_check.cpp
// namespace_check.cpp,v 1.5 2003/10/28 18:30:49 bala Exp
// ============================================================================
//
// = LIBRARY
// TAO/tests/IDL_Test
//
// = FILEN
www.eeworm.com/read/131171/5947881
3 namespace_std.3
.TH std 3 "16 Sep 1999" "FREE_C++_STANDARD_LIBRARY" \" -*- nroff -*-
.ad l
.nh
.SH NAME
std \-
.SH SYNOPSIS
.br
.PP
.SS Compounds
.in +1c
.ti -1c
.RI "class \fBvector\fR"
.br
.in -1c
.SS Functions
www.eeworm.com/read/120487/6072408
c pg_namespace.c
/*-------------------------------------------------------------------------
*
* pg_namespace.c
* routines to support manipulation of the pg_namespace relation
*
* Portions Copyright (c) 1996-20
www.eeworm.com/read/120487/6072966
h pg_namespace.h
/*-------------------------------------------------------------------------
*
* pg_namespace.h
* definition of the system "namespace" relation (pg_namespace)
* along with the relation's initia
www.eeworm.com/read/117051/6112075
cpp importwithno_namespace.cpp
#import no_namespace rename( "EOF", "adoEOF" )
struct InitOle {
InitOle() { ::CoInitialize(NULL); }
~InitOle() { ::CoUninitialize(); }
} _init_InitOle_;
void main()
{