很多其它游戏源代码,请点击我假设文章对您有所帮助,欢迎给作者捐赠,支持郝萌主的独立游戏工作,捐赠数额任意,重在心意^_^
+-------------------------------------------------------- End
---------------------------...
分类:
移动开发 时间:
2014-06-06 23:11:17
阅读次数:
297
Stop命令使用该命令的程序位置INITIALIZATION, AT
SELECTION-SCREEN, START-OF-SELECTION和GET
事件中处理说明1、当在INITIALIZATION事件执行该命令,系统将直接触发应用服务器和客户端屏幕元素的发送;2、在其他事件中将直接触发END-...
分类:
其他好文 时间:
2014-06-06 22:53:58
阅读次数:
251
1、理解: 把若干条 SQL 语句封装起来,起个名字,就叫过程
把这个过程存储在数据库中,就叫存储过程2、存储过程的创建语法: create procedure procedureName() begin --sql 语句
end$3、查看已有的存储过程: 示例:show procedure sta...
分类:
数据库 时间:
2014-06-04 14:59:24
阅读次数:
274
早上做数据迁移,部署完slave2,发现3台机子的日志狂刷:旧slave:2014-05-29 14:35:35 996 [Note] Slave: received end packet from server, apparent master shutdown:
2014-05-29 14:35:35 996 [Note] Slave I/O thread: Failed reading l...
分类:
其他好文 时间:
2014-06-03 01:52:25
阅读次数:
327
注意到数列只增不减,而题目中又明确说道my then exit(x) else
exit(y); end;procedure build(x,y,k:longint); var mid:longint; begin with t[k] do
begin l:=x;r:=y; if ...
分类:
Web程序 时间:
2014-06-02 14:01:28
阅读次数:
247
1概述本文主要介绍如何将JBPM+Struts+Spring+Hibernate整合在一块。并通过一个简单实例来说明。此实例为一个申请审批的简单流程,并将申请人和审批人记录到数据库中,流程为start----申请----审批----end,中间无退回,无分支,只是看一下jbpm的流程设计,本文将jb...
分类:
其他好文 时间:
2014-06-02 08:41:20
阅读次数:
232
收集数据库信息时候报ORA-01652错如下
SQL>EXECDBMS_STATS.gather_database_stats;
BEGINDBMS_STATS.gather_database_stats;END;
*
ERRORatline1:
ORA-01652:unabletoextendtempsegmentby128intablespaceTEMP01
ORA-06512:at"SYS.DBMS_STATS",line13210
ORA-06512:at"SYS..
分类:
其他好文 时间:
2014-06-02 03:20:19
阅读次数:
316
就如同C里的if else,while,do,repeat;就看lua里怎么用:
1、首先看if else
t = {1,2,3}
local i = 1
if t[i] and t[i] % 2 == 0 then
print("even")
else
print("odd")
end
lua木有C里的&&,而是and来表示;if 之后跟表达式,之后要更个then 最后语句结束都要...
分类:
其他好文 时间:
2014-06-01 18:13:48
阅读次数:
567
type node1=record go,next:longint;end; node2=record
l,r,mx,sum:longint;end;var i,x,y,n,q,tmp,cnt,sz,code:longint; ch,st:string;
fa:a...
分类:
其他好文 时间:
2014-06-01 11:45:18
阅读次数:
374
Given a linked list, reverse the nodes of a linked list k at a time and return its modified list.
If the number of nodes is not a multiple of k then left-out nodes in the end should remain as it is...
分类:
其他好文 时间:
2014-06-01 09:05:42
阅读次数:
271