虫虫首页| 资源下载| 资源专辑| 精品软件
登录| 注册

null-terminated

  • 提供了一种注册机算法的实现. 里面共有两份分别是题库的代码和注册机的代码

    提供了一种注册机算法的实现. 里面共有两份分别是题库的代码和注册机的代码,题库的基本和一些扩展功能我已经做好了,大家看看我做的功能实现代码怎么样。其中还有一部分我打算实现的功能没时间完成,各位有时间可以帮我完成,别忘了告诉我一声哦(QQ:214392346),我一些想做的功能已经把界面搞好了,有些地方还没写代码,我觉得里面的代码还有好大的可优化空间,大家帮忙完善一下吧,记得用Jbulider打开工程。由于时间仓卒,我使用的是null布局,我是在windowsXP下调试编写的,可能在不同的操作系统中打开会发生问题,Windows用户就不用改其布局了,如果你的操作系统是非windows可能就要重新改变布局咯。

    标签: 注册机 代码 算法

    上传时间: 2016-05-03

    上传用户:anng

  • Sqlserver2000压力测试 数据库请自己建

    Sqlserver2000压力测试 数据库请自己建,附脚本。不懂的可以发邮件问我:killwolf@163.com 10万 109640ms 插入 23078ms 清空 20万 216281ms 8391马上 40万: 416781 9381 if exists (select * from dbo.sysobjects where id = object_id(N [dbo].[StuInfo] ) and OBJECTPROPERTY(id, N IsUserTable ) = 1) drop table [dbo].[StuInfo] GO CREATE TABLE [dbo].[StuInfo] ( [StuID] [float] NULL ) ON [PRIMARY] GO

    标签: Sqlserver 2000 压力 测试

    上传时间: 2016-05-08

    上传用户:lht618

  • 本程序执行后

    本程序执行后,创建一个能够加载文字的面板,文字的内容是本地主机的IP地址的动态显示。跑马灯文字的大小和跑马灯文字显示的速度都可以在GatutTextCrawler.html文件里通过参数进行设置。 编程思路:首先,本练习因为要制作侦测IP的跑马灯的实例,所以首先要生成程序界面:在函数public void init()中,首先通过语句s = getParameter("fontSize")和fontSize = s != null ? Integer.valueOf(s).intValue() : 12设置文字字体大小,然后进行字体设置和显示速度设置,最后通过语句msgText = getParameter("preText")得到GatutTextCrawler.html文件中的字符串值。然后,得到主机IP地址,首先通过函数adds = InetAddress.getLocalHost().toString()得到主机的IP地址,最后在更新屏幕函数public void update(Graphics g)中通过实现跑马灯效果。

    标签: 程序

    上传时间: 2016-06-06

    上传用户:miaochun888

  • The simulator GUI is started with command ui_start in Matlab command window. WLAN simulation star

    The simulator GUI is started with command ui_start in Matlab command window. WLAN simulation starts by clicking the Start Simulation button in the GUI window. WLAN simulation can be terminated, before set number of packets have been reached by pressing control-C .

    标签: command simulation simulator ui_start

    上传时间: 2016-06-11

    上传用户:sevenbestfei

  • Java五子棋程序 本软件使用JAVA语言实现

    Java五子棋程序 本软件使用JAVA语言实现,通过对SCOKET技术的理解,在此基础上建立服务器与客户端相连接,从而实现局域网内两人互动进行五子棋游戏。整体采用BorderLayout来布局,分为toolBar, board 和statusBar三部分,分别位于NORTH、CENTER和SOUTH。其中board部分采用null的布局方式,toolbar部分采用FlowLayout的布局方式。通过对软件的编写,加深对以上技术的理解和掌握。

    标签: Java JAVA 程序 软件使用

    上传时间: 2016-06-21

    上传用户:mhp0114

  • AutomaticPropertiesDefaultValues Article_src.zip PropertyInfo[] props = o.GetType().GetPropert

    AutomaticPropertiesDefaultValues Article_src.zip PropertyInfo[] props = o.GetType().GetProperties(BindingFlags.Public | BindingFlags.NonPublic | BindingFlags.Instance | BindingFlags.Static) for (int i = 0 i < props.Length i++) { PropertyInfo prop = props[i] if (prop.GetCustomAttributes(true).Length > 0) { object[] defaultValueAttribute = prop.GetCustomAttributes(typeof(DefaultValueAttribute), true) if (defaultValueAttribute != null) { DefaultValueAttribute dva = defaultValueAttribute[0] as DefaultValueAttribute if(dva != null) prop.SetValue(o, dva.Value, null) }

    标签: AutomaticPropertiesDefaultValues PropertyInfo Article_src GetPropert

    上传时间: 2014-11-22

    上传用户:xaijhqx

  • DESProcess FILE *mfp,*cfp int ttch=0,xorRes,ttbitdiff=0 char mch,cch float bdiff=0 if

    DESProcess FILE *mfp,*cfp int ttch=0,xorRes,ttbitdiff=0 char mch,cch float bdiff=0 if((mfp=fopen(mfile,"r"))==NULL) {cout<<"Cannot open the file to compare"<<endl } if((cfp=fopen(cfile,"r"))==NULL) {cout<<"Cannot open the file to compare"<<endl } else { while(!feof(mfp)&!feof(cfp)) { ttch++ mch=fgetc(mfp) cch=fgetc(cfp) xorRes=mch^cch ttbitdiff+=(xorRes&1)+(xorRes&2)/2+(xorRes&4)/4+(xorRes&8)/8+(xorRes&16)/16+(xorRes&32)/32+(xorRes&64)/64+(xorRes&128)/128 } bdiff=float(ttbitdiff)*100/float(ttch*8) } *bitdiff8byte=float(ttbitdiff)*100/float(8*8) return bdiff

    标签: DESProcess ttbitdiff xorRes bdiff

    上传时间: 2016-07-02

    上传用户:1079836864

  • package query public class LinkQuery { private Node front private Node vear public Link

    package query public class LinkQuery { private Node front private Node vear public LinkQuery() { this.front=null this.vear=null } public void add(int i) { Node newNode=new Node(i) if(vear==null && front==null) { vear=newNode front=newNode return } vear.next=newNode vear=newNode } public int remove() { if(this.front==null) { System.out.println("队是空的,无法取") return -1 } int temp=this.front.data this.front=this.front.next if(this.front==null) { this.vear=null }

    标签: private public Node LinkQuery

    上传时间: 2016-07-08

    上传用户:天诚24

  • 内存的申请和分配并没有成功

    内存的申请和分配并没有成功,但程序员却使用了它。一些新手经常会犯这种错误,他们并不会留意到内存没有分配成功。判断指针的值是否为NULL可以有效地避免这种错误。

    标签: 内存 分配

    上传时间: 2014-01-12

    上传用户:czl10052678

  • java 通用连接 MS SQL 的写法

    java 通用连接 MS SQL 的写法 ,给新手用吧 DBconnect DBC DBC = new DBconnect() java.sql.Statement stmt = null if (DBC.connectDB()) {

    标签: java SQL MS 连接

    上传时间: 2013-12-28

    上传用户:gmh1314