代码搜索:scope
找到约 10,000 项符合「scope」的源代码
代码结果 10,000
www.eeworm.com/read/101053/6257900
java scope.java
/**
* BSD-style license; for more info see http://pmd.sourceforge.net/license.html
*/
package net.sourceforge.pmd.symboltable;
import java.util.Map;
/**
* Provides methods which all scopes must im
www.eeworm.com/read/101053/6257981
java scope.java
package net.sourceforge.pmd.cpd.cppast;
import java.util.Hashtable;
public class Scope
{
/**
* Name of the scope (set only for class/function scopes).
*/
String scopeName;
/**
www.eeworm.com/read/100133/6273717
java scope.java
package tinybasic;
import java.util.*;
public class Scope {
protected Scope prev;
protected Scope global;
Hashtable symbolTable;
protected Scope(Scope prev){
this.prev=prev;
symbolTable =
www.eeworm.com/read/330223/6302366
txt scope.txt
// Experiment with variable scope
import javax.swing.JOptionPane;
public class Scope
{
public static int b = 25;
// This is a class variable. It is not declared
// in the body
www.eeworm.com/read/330223/6302419
txt scope.txt
// Experiment with variable scope
import javax.swing.JOptionPane;
public class Scope
{
public static int b = 25;
// This is a class variable. It is not declared
// in the body
www.eeworm.com/read/488496/6488219
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/486626/6536864
gif scope_on.gif
www.eeworm.com/read/485003/6569856
gif scope_on.gif
www.eeworm.com/read/263812/11340330
mak scope.mak
Type=Exe
Form=FRMSCOPE.FRM
IconForm="frmScope"
Startup="frmScope"
Command32=""
Name="Scope"
HelpContextID="0"
CompatibleMode="0"
MajorVer=1
MinorVer=0
RevisionVer=0
AutoIncrementVer=0
Serv
www.eeworm.com/read/263812/11340333
bas scope.bas
Attribute VB_Name = "modScope"
Option Explicit
' Declare x as a global
' variable; g has not
' been prefixed for this
' example
Public x As Integer
Sub four()
frmScope.Print "global x i