代码搜索:scope

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

代码结果 10,000
www.eeworm.com/read/243809/4519146

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/240162/4589597

c scope.c

static int v = 3; f () { int v = 4; { extern int v; /* { dg-error "static" } */ if (v != 3) abort (); } } main () { f (); exit (0); }
www.eeworm.com/read/239308/4603016

java scope.java

/** * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding cop
www.eeworm.com/read/237048/4634998

java scope.java

/* * $Id: Scope.java,v 1.1 2003/11/25 11:42:31 epr Exp $ */ package org.jnode.driver.acpi.vm; /** * Scope. * * * Title: * * * Description: * * * Lice
www.eeworm.com/read/234783/4656407

java scope.java

/* * Copyright 2002-2007 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License.
www.eeworm.com/read/233448/4684359

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/231546/4714712

h scope.h

#define SAVEt_ITEM 0 #define SAVEt_SV 1 #define SAVEt_AV 2 #define SAVEt_HV 3 #define SAVEt_INT 4 #define SAVEt_LONG 5 #define SAVEt_I32 6 #define SAVEt_IV 7 #define SAVEt_SPTR 8 #define SAVE
www.eeworm.com/read/229812/4741056

c scope.c

/**************************************************************************** * * Open Watcom Project * * Portions Copyright (c) 1983-2002 Sybase, Inc. All Rights Res
www.eeworm.com/read/222163/4822032

java scope.java

package isis.anp.nesc.ot.scope; import isis.anp.common.TNode; import isis.anp.nesc.ot.NameConflictException; import isis.anp.nesc.ot.types.CompoundType; import isis.anp.nesc.ot.types.EnumType;
www.eeworm.com/read/221464/4829840

hpp scope.hpp

// Copyright David Abrahams 2002. Permission to copy, use, // modify, sell and distribute this software is granted provided this // copyright notice appears in all copies. This software is provided