为什么学lua
先占位,晚上再写
1.1 Chunks
Chunk 是一系列语句,lua执行d每一块语句,比如一个文件或者交互模式下的每一行都是一个Chunk。
一个Chunk可以是一个语句,也可以是一系列语句的组合。可以是函数,Chunk可以很大
每个语句结尾的分号(;)是可选的。如果同行又多个语句,最好用;分开
-l会调用 require
lua -la -lb ...
分类:
其他好文 时间:
2014-08-20 14:07:32
阅读次数:
212
2014-08-20 10:46:22,356 INFO [coreZkRegister-1-thread-1] [org.apache.solr.cloud.ShardLeaderElectionContext] - Was waiting for replicas to come up, but they are taking too long - assuming they won't c...
分类:
其他好文 时间:
2014-08-20 12:36:22
阅读次数:
338
android中的事件类型分为按键事件和屏幕触摸事件,Touch事件是屏幕触摸事件的基础事件,有必要对它进行深入的了解。一个最简单的屏幕触摸动作触发了一系列Touch事件:ACTION_DOWN->ACTION_MOVE->ACTION_MOVE->ACTION_MOVE...->ACTION_MO...
分类:
其他好文 时间:
2014-08-20 12:17:42
阅读次数:
208
[root@athController~]#novalistERROR:Anunexpectederrorpreventedtheserverfromfulfillingyourrequest.(OperationalError)(1040,‘Toomanyconnections‘)NoneNone(HTTP500)解决办法:key_buffer=64Mmax_allowed_packet=16Mthread_stack=192Kthread_cache_size=8myisam-recover=B..
分类:
数据库 时间:
2014-08-20 10:35:46
阅读次数:
437
Two players, S and T, are playing a game where they makealternate moves.
S plays first.
In this game, they start with an integer N. In each move, a player removesone digit from the integer and pass...
分类:
其他好文 时间:
2014-08-20 10:28:46
阅读次数:
239
模拟汉诺塔的移动过程,CC答案的面向对象的太烦,写个以前学的经典的。public class Solution { public void move(int n, char a, char b, char c) { if (n == 1) { System....
分类:
其他好文 时间:
2014-08-20 01:19:25
阅读次数:
184
原文:一个简单的带序列号输入的安装包首先建立一个Installscript Project
在Installation Designer中,找到Behavior and Logic -> Install Script, 在Setup.rul中找到Before Move Data -> OnFirst...
分类:
其他好文 时间:
2014-08-19 18:53:05
阅读次数:
185
python的算法简要到你可以见性直指:def q_sort(l): if len(l)=p] return q_sort(small_part)+[p]+q_sort(big_part)太好理解了吧!这就是算法的精要?还有更简单的,def q_sort(l): if le...
分类:
编程语言 时间:
2014-08-19 10:54:34
阅读次数:
376
异常处理
一、预定义异常:
Dup_val_on_index:试图向唯一索引列插入重复值,相当于建立了一个唯一索引 然后再向这个索引的列中插入一条重复的数据就会异常。
Invalid_cursors:试图进行非法的游标操作
Invalid_number : 试图将字符串转换为数字
no_data_found : select into 语句没有返回任何记录
Too_many_rows ...
分类:
其他好文 时间:
2014-08-19 09:27:03
阅读次数:
210
首先是支持gb2312,gbk,big三种编码。 以下是代码: $len = 19; $text = "怎么将新闻的很长的标题只显示前面一些字,后面用…..来代替?"; echo strlen($text)<=$len ? $text : (substr($text,0,$len).chr(0)."…...
分类:
Web程序 时间:
2014-08-18 18:58:23
阅读次数:
274