代码搜索:scope
找到约 10,000 项符合「scope」的源代码
代码结果 10,000
www.eeworm.com/read/196362/8097181
java scope.java
//demonstrate block scope
class scope
{
public static void main(String[] args)
{
int x = 10;
if(x == 10)
{
int y = 20;
System.out.println("x and y: " + x + " " + y);
www.eeworm.com/read/196362/8097584
class scope.class
www.eeworm.com/read/196275/8102886
h scope.h
#if !defined(AFX_SCOPE_H__CA7C6507_3A56_413A_BE4F_AF514CDC2E3B__INCLUDED_)
#define AFX_SCOPE_H__CA7C6507_3A56_413A_BE4F_AF514CDC2E3B__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VE
www.eeworm.com/read/196275/8102920
cpp scope.cpp
// Scope.cpp : implementation file
//
#include "stdafx.h"
#include "DSPMotor.h"
#include "Scope.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
www.eeworm.com/read/296292/8112465
lib scope.lib
www.eeworm.com/read/296292/8112491
exe scope.exe
www.eeworm.com/read/195673/8136089
class scope.class
www.eeworm.com/read/144287/12803955
gif scope_on.gif
www.eeworm.com/read/144078/12819172
class scope.class
www.eeworm.com/read/144078/12819175
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