代码搜索:scope
找到约 10,000 项符合「scope」的源代码
代码结果 10,000
www.eeworm.com/read/378111/2691617
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/375190/2727222
hpp scope.hpp
/*=============================================================================
Copyright (c) 2001-2007 Joel de Guzman
Distributed under the Boost Software License, Version 1.0. (See accompan
www.eeworm.com/read/375190/2730181
hpp scope.hpp
// Copyright David Abrahams 2002.
// Distributed under the Boost Software License, Version 1.0. (See
// accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
#ifndef SC
www.eeworm.com/read/374220/2755198
java scope.java
/**
* @(#)Scope.java 1.18 03/01/23
*
* Copyright 2003 Sun Microsystems, Inc. All rights reserved.
* SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
*/
package com.sun.tools.j
www.eeworm.com/read/369885/2789312
java scope.java
/*
* @(#)Scope.java 1.1 06/06/24
*
* Copyright 2006 Sun Microsystems, Inc. All rights reserved.
* SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
*
* Use and Distribution is subje
www.eeworm.com/read/367917/2829113
java scope.java
package org.ofbiz.rules.engine;
import java.util.*;
import org.ofbiz.rules.utensil.*;
/**
* Title: Scope
* Description: None
* Copyright (c) 1999 Steven J. Mets
www.eeworm.com/read/366702/2881497
c scope.c
extern void abort (void);
extern void exit (int);
static int v = 3;
f ()
{
int v = 4;
{
extern int v; /* { dg-error "static" } */
if (v != 3)
abort ();
}
}
main ()
{
f ();
www.eeworm.com/read/362236/2935350
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/358243/2989010
java scope.java
/*
* @(#)Scope.java 1.1 06/06/24
*
* Copyright 2006 Sun Microsystems, Inc. All rights reserved.
* SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
*
* Use and Distribution is subje
www.eeworm.com/read/358237/2998213
java scope.java
/*
* Copyright (c) 1998-2008 Caucho Technology -- all rights reserved
*
* This file is part of Resin(R) Open Source
*
* Each copy or derived work must preserve the copyright notice and this
* no