代码搜索:scope

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

代码结果 10,000
www.eeworm.com/read/467651/1497080

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.javac.v
www.eeworm.com/read/463461/1537433

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.javac.v
www.eeworm.com/read/461881/1549435

java scope.java

public class Scope{ int x; //x为实例变量 int y; //y为实例变量 static int z; //z为静态变量 void method(int x){ //x为方法参数 int y=1; //y为局部变量 int z=1; //z为局部变量 this.x=x+1; //this.x代表实例变量x;
www.eeworm.com/read/461822/1549922

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 c
www.eeworm.com/read/461822/1550818

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 c
www.eeworm.com/read/460691/1558279

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/460242/1561796

cs scope.cs

namespace Fireball.Syntax { /// /// The Scope class defines what patterns starts and ends a BlockType /// public sealed class Scope { /// /// The Start
www.eeworm.com/read/458810/1582517

java scope.java

/* * Copyright 2002-2006 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/454567/1629628

java scope.java

/** * Copyright (C) 2006 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy
www.eeworm.com/read/247171/4486796

vb scope.vb

Option Strict Off Module Scope Dim i As Integer = 5 Function f1() If i 5 Then System.Console.WriteLine("#A1, value of i is not correct") : Return 1 End If E