代码搜索:Scanner
找到约 4,788 项符合「Scanner」的源代码
代码结果 4,788
www.eeworm.com/read/448586/7529626
l mylex.l
/* scanner for a toy Pascal-like language */
%{
/* need this for the call to atof() below */
#include
%}
DIGIT [0-9]
ID [a-z][a-z0-9]*
%%
{DIGIT}+ {
printf(
www.eeworm.com/read/448586/7529627
l mylex.l
/* scanner for a toy Pascal-like language */
%{
/* need this for the call to atof() below */
#include
%}
DIGIT [0-9]
ID [a-z][a-z0-9]*
%%
{DIGIT}+ {
printf(
www.eeworm.com/read/437118/7755005
java lexer.java
package java_cup;
import java_cup.runtime.Symbol;
import java.util.Hashtable;
/** This class implements a small scanner (aka lexical analyzer or lexer) for
* the JavaCup specification. This scann
www.eeworm.com/read/199568/7844767
java sphere.java
// Exercise 6.6: Sphere.java
// Calculate the volume of a sphere.
import java.util.Scanner;
public class Sphere
{
// obtain radius from user and display volume of sphere
public void dete
www.eeworm.com/read/330099/12916400
h ecc_encrypt.h
//***************程序说明****************************************//
//程序名称: 射频数据通信头文件 AUCT-Scanner.h //
//功能: 无线扫码器 //
//硬件环境: MSP430
www.eeworm.com/read/328377/13031709
cpp scannerview.cpp
// scannerView.cpp : implementation of the CScannerView class
//
#include "stdafx.h"
#include "scanner.h"
//#include "DemoView.h"
//#include "CompileWord.h"
#include "scannerView.h"
#include
www.eeworm.com/read/326686/13123997
cpp scannermain.cpp
#include "scanner.h"
void main(int argc,char *argv[])
{
Token token;
if (argc
www.eeworm.com/read/325486/13201164
java beetlegame.java
// Introduced in Chapter 1
/** The game of Beetle for two players. */
public class BeetleGame {
/** For reading from the console. */
public static final java.util.Scanner INPUT
= new java.uti
www.eeworm.com/read/116008/6114345
lex senseparser.lex
package net.tinyos.tinydb.parser;
//import sym.*;
import java_cup.runtime.*;
/* semantic value of token returned by scanner */
class TokenValue {
public int lineBegin;
public int charB