代码搜索:scope
找到约 10,000 项符合「scope」的源代码
代码结果 10,000
www.eeworm.com/read/263812/11340336
vbw scope.vbw
frmScope = 44, 44, 323, 314, , 22, 22, 301, 292, C
www.eeworm.com/read/406747/11436826
rb scope.rb
#!/usr/bin/env ruby
require 'gtk2'
# require 'serialport' doesn't work, so use Kernel::require
Kernel::require 'serialport'
class SingleStripChart < Gtk::DrawingArea
def initialize(w, h, tv, bv, sh
www.eeworm.com/read/405866/11455422
c scope.c
unsigned ua;
#include"svpwm.h"
extern SVPWM svpwm;
void scope(void)
{
unsigned t1,tm,t0;
t1=svpwm.t1;
tm=svpwm.tm;
t0=0xffff-t1-tm;
switch(svpwm.vect)
{
case 1:ua
www.eeworm.com/read/403014/11523706
cpp scope.cpp
//: C03:Scope.cpp
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 2000
// Copyright notice in Copyright.txt
// How variables are scoped
int main
www.eeworm.com/read/403013/11524018
cpp scope.cpp
/*
* This file contains code from "C++ Primer, Fourth Edition", by Stanley B.
* Lippman, Jose Lajoie, and Barbara E. Moo, and is covered under the
* copyright and warranty notices given in that
www.eeworm.com/read/401625/11553331
java scope.java
public class Scope
{
static int i = 3;
int j = 5;
public static void main (String argv[])
{
i = 10;
j = 20;
Scope s = new Scope()
s.A(2);
s.B(30);
}
public void A(int i)
{
int j,
www.eeworm.com/read/346994/11706567
c scope.c
/* Illustrates variable scope. */
#include
int x = 999;
void print_value(void);
int main( void )
{
printf("%d\n", x);
print_value();
return 0;
}
void print_
www.eeworm.com/read/346994/11706568
exe scope.exe
www.eeworm.com/read/259220/11814454
cpp scope.cpp
//: C03:Scope.cpp
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 2000
// Copyright notice in Copyright.txt
// How variables are scoped
#include