代码搜索:scope
找到约 10,000 项符合「scope」的源代码
代码结果 10,000
www.eeworm.com/read/350121/10771776
plg scope2.plg
Build Log
--------------------Configuration: Scope2 - Win32 Debug--------------------
Command Lines
Creating temporary file "C:\WINDOWS\TEMP\RS
www.eeworm.com/read/350121/10771779
opt scope2.opt
www.eeworm.com/read/350121/10771782
dsp scope2.dsp
# Microsoft Developer Studio Project File - Name="Scope2" - Package Owner=
# Microsoft Developer Studio Generated Build File, Format Version 6.00
# ** DO NOT EDIT **
# TARGTYPE "Win32 (x86) Co
www.eeworm.com/read/350121/10771784
cpp scope2.cpp
void main()
{
int amount=123; // 外部的局部变量
{
int amount=456; // 嵌套的局部变量
::amount=789; // 错误:非法访问外部的局部变量
//. . . . . .
}
}
www.eeworm.com/read/350121/10771787
dsw scope2.dsw
Microsoft Developer Studio Workspace File, Format Version 6.00
# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!
###############################################################################
www.eeworm.com/read/272364/10960334
save scope.cpp.save
/* A simple oscilloscope program, reading sample data from a serial
port.
This program was developed under Cygwin on Windows XP, and Linux.
It requires the FLTK 1.1.4 toolkit and the
www.eeworm.com/read/449483/7503509
gif scope_off.gif
www.eeworm.com/read/436538/7768154
cpp scope_levels.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/436514/7768795
cpp scope_levels.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/109740/7811612
java scope2.java
//c4:Scope2.java
//author:ZhangHongbin
//This program is protected by copyright laws.
//Variables in method and in class.
public class Scope2
{
int x=1;
void m()
{
int y=2;
System.ou