代码搜索:scope
找到约 10,000 项符合「scope」的源代码
代码结果 10,000
www.eeworm.com/read/281673/9142127
cpp scope.cpp
//: C03:Scope.cpp
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 2000
// Copyright notice in Copyright.txt
// How variables are scoped
int main
www.eeworm.com/read/379766/9178406
gif scope_on.gif
www.eeworm.com/read/181668/9242107
cpp scope.cpp
/*
* This file contains code from "C++ Primer, Fourth Edition", by Stanley B.
* Lippman, Jose Lajoie, and Barbara E. Moo, and is covered under the
* copyright and warranty notices given in that
www.eeworm.com/read/181232/9264374
h scope.h
#ifndef __SCOPE_H__
#define __SCOPE_H__
#pragma once
#include "CPTypeDef.h"
//管理当前域及当前可见的域
//但函数内的局部域除外
class CScope
{
public:
//构造函数
CScope();
//析构函数
virtual ~CScope();
p
www.eeworm.com/read/181232/9264410
cpp scope.cpp
#include "stdafx.h"
#include "Scope.h"
#ifdef _DEBUG
#undef THIS_FILE
static char THIS_FILE[]=__FILE__;
#define new DEBUG_NEW
#endif
BEGIN_TEST_DUMP(CScope)
TEST_DUMP(mCurrScope)
www.eeworm.com/read/377342/9279920
cpp scope.cpp
/*
* This file contains code from "C++ Primer, Fourth Edition", by Stanley B.
* Lippman, Jose Lajoie, and Barbara E. Moo, and is covered under the
* copyright and warranty notices given in that
www.eeworm.com/read/180734/9296476
cpp scope.cpp
/*
* This file contains code from "C++ Primer, Fourth Edition", by Stanley B.
* Lippman, Jose Lajoie, and Barbara E. Moo, and is covered under the
* copyright and warranty notices given in that
www.eeworm.com/read/180328/9312102
h scope.h
#if !defined(AFX_SCOPE1_H__20373609_0B81_493C_8F94_B4644298A84F__INCLUDED_)
#define AFX_SCOPE1_H__20373609_0B81_493C_8F94_B4644298A84F__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_
www.eeworm.com/read/180328/9312114
cpp scope.cpp
// Scope1.cpp : implementation file
//
#include "stdafx.h"
#include "resource.h"
#include "Scope.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
www.eeworm.com/read/178378/9404922
cpp scope.cpp
//: C03:Scope.cpp
// From Thinking in C++, 2nd Edition
// at http://www.BruceEckel.com
// (c) Bruce Eckel 1999
// Copyright notice in Copyright.txt
// How variables are scoped.
int main() {