搜索资源列表
ddvip_com_0206092af341ff
- java 100例子 import javax.swing.JOptionPane //调用method class c { //定义名字 public static void main(String[] args) { //开始method JOptionPane.showMessageDialog( null, \"错误\" ) //显示一条信息 System.exit(0) // 结束程序 } //结束method
reg2nfa
- 程序用JAVA语言编写, 综合利用图结构和堆栈结构进行数据组织和处理. 可以进行正则表达式到NFA的转化, 并能用图形直观的表示. 对正则表达式有一些约定, 就是可以用单个字符表示输入, 也可以用 ‘ ‘ 连接起来的一串字符进行输入. 有基本的表达式以及由基本表达式构成的并置, 选择和重复的操作. 例: A|b*c ‘letter’*’digit’ 等都是合法输入. 还带有括号功能, 优先级 -procedures using Java language.
v3026_cutil
- 日期,菜单,字符串的C函数 -date, menu, the C string functions
C++字符串完全指南
- C++字符串操作的基本指南,新手必读-C string manipulation of the basic guidelines, mandatory rookie
THREEAlgorithm
- 包括格雷玛、*游戏、字串核对三个算法的C和JAVA版的对比实现-including Geleima, gambling games, three string matching algorithm C and JAVA version of the contrast achieve
classshapemain
- classshapemain.zip //: c03:AutoInc.java // Demonstrates the ++ and -- operators. // From Thinking in Java, 3rd ed. (c) Bruce Eckel 2002 // www.BruceEckel.com. See copyright notice in CopyRight.txt. public class AutoInc { public static
finaloverridingillusion
- finaloverridingillusion.ziplic class DoWhileDemo { public static void main(String[] args) { String copyFromMe = \"Copy this string until you encounter the letter g .\" StringBuffer copyToMe = new StringBuffer() int i = 0 char
delete
- 代码是一个字符串的在插入和删除的源代码 并在visual c++下运行了-code is a string of the insert and delete the source code and visual c running under the
DbUtil
- 连接oracle数据库的操作方法 tatic String driverName=\"oracle.jdbc.driver.OracleDriver\" static String dbUrl=\"jdbc:oracle:thin:@10.1.1.44:1521:DBAWEB\" static String user=\"DBA_WEB\" static String password=\"DBA_WEB\" -oracle database linking the
Slstr201
- C++中的字符串类的程序-C string of procedures
ProduceAndConsume
- 一个简单的Java多线程的小例子。 a) Producer 生产 String,并保存在 ArrayList 中。Consumer 消耗(读出并显 示)String,并把它从 ArrayList 中删除。生产和消耗应在 console有打印显示。 b) 可指定生产者生产多少个数据,也可以指定消费者消耗多少个数据。完成要求数据 的生产或消费以后,线程自动终止。(应提供相应的构造函数来指定数据个数) c) 当容器内没有数据时,Consumer 应等待,等容器内有新的数据后再次
ActionScript编程实例
- Chapter 2: Getting Started Hello World Hello World Enhanced A simple "Hello World" application that shows the basics of how to use an Actionscr ipt 3.0 class in an application. The Enhanced version adds a name-checking feature. These exam
词法分析程序(编译原理)
- 用C语言写的词法分析程序 #include "stdio.h" #include"string.h" #include "stdlib.h" FILE *fp; char filename[20]; char token[100]; int m=0; char getch() { char ch; ch=fgetc(fp); return ch; } char getbc
Excel2sql
- Excel导入SQLserver源码 Excel是一种非常灵活的电子表格软件,用它可以存储各种数据,本节将对如何将Excel导入SQL Server2000数据库进行详细介绍。 开发环境:NET2.0 开发工具:vs2005 开发语言:c# 数据库:server2000 1.方案分析 通过Microsoft.Jet.OLEDB.4.0方式可实现使用ADO.NET访问Excel的目的,如以下示例代码为连接Excel数据的字符串: string strOdbcCon
ExamOnlineAcc
- 在线考试系统完整版源码(C#&Access) 该考试系统为一同学毕业设计,采用Access数据库,三层开发 DB_51aspx下为Access数据库文件,Web为网站文件夹 目录下的Auto Generated Code均为代码生成器自动生成的代码 ExamDAL/DBHelp.cs为数据处理文件,注意使用时请先配置其中string strPath = "E:\\downCode\\ExamOnline\\DB_51aspx\\ExamOnline.mdb" 的数据库路径并编译才
auto
- _企业办公自动化系统 基本信息 开发工具: Visual Studio 2005 开发语言: C# 数据库: SQL Server 2000 ASP.NET版本:ASP.NET 2.0 数据库文件位置:“OANetWeb\App_Data\For MSSQL2000”目录下,直接附加数据库即可; 数据库用户名与密码:位于OANetWeb\web.config文件中,默认是sa/(空) 使用步骤 1. 将OA
jsClass_AjaxTable
- /*------------------------------------------------------------------| | AjaxTablePage 1.01 | AJAX数组表格分页类 | |-------------------------------------------------------------------| | Copyright (c) 2009 Apollo Updated: 2009年2月5日9:44:56| | | | 调用
BatchAddEmployee
- 类名:com.uisftech.hr.util.StringUtil.java。方法如下: 检查一个字符串是否为空(null、“”或全部为空格) 检查一个字符串是否为数字 解析一个文件名字符串,取文件的扩展名 解析一个文件名字符串,取丌含扩展名的文件名 生成一个指定位数的验证码,规则如下: • 验证码每一位可取:数字0~9,小写字母a、b、c、d、e、f、g、h、i、j、k、m、n、
zhongjiang
- import java.util.* public class sanmen { public static void main(String[] args) { System.out.println("1:Keep the box you chose initially and open it .") System.out.println("2:Take the remaining box ,which the game show host did not o
CopyArray
- 数组及接口import java.util.Arrays public class CopyArray { public static void main (String args[ ]) { int [] a {1,2,3,4,500,600,700,800} int [] b,c,d System.out.println(Arrays.toString(a)) b Arrays.copyOf(a,a.length) System.out.pr