代码搜索:scope

找到约 10,000 项符合「scope」的源代码

代码结果 10,000
www.eeworm.com/read/250058/12438583

js scope.js

var global = "available"; function availability() { return global; } var isAvailable = availability(); alert("The global variable is: " + isAvailable);
www.eeworm.com/read/336253/12461823

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/336253/12461838

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/336253/12461874

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/336253/12461878

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/132098/14110465

class scope.class

www.eeworm.com/read/132098/14110467

java scope.java

//Scope.java //Java中变量的作用域 public class Scope { public static void main(String args[]) { int x = 25; System.out.println("x="+x);//只有x 有效 { int y = 36; Syste
www.eeworm.com/read/234193/14119688

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/234193/14119708

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/129197/14258778

java scope.java

public class Scope { static int x = 5; public static int timesX( int n ) { int result = n*x; return result; } public static void main( String[] args ) { int m = 10;