04 2016 档案

摘要:(字符串函数库)总结 投稿:junjie 字体:[增加 减小] 类型:转载 时间:2014-11-20 我要评论 (字符串函数库)总结 投稿:junjie 字体:[增加 减小] 类型:转载 时间:2014-11-20 我要评论 这篇文章主要介绍了Lua中的string库(字符串函数库)总结,本文讲解 阅读全文
posted @ 2016-04-28 15:32 狭隘龙 阅读(385) 评论(0) 推荐(0)
摘要:Lua 环境安装 编辑调试Lua脚本 阅读全文
posted @ 2016-04-22 10:02 狭隘龙 阅读(442) 评论(0) 推荐(0)
摘要:Visual Assist 代码提示 Indent Guides 阅读全文
posted @ 2016-04-22 10:00 狭隘龙 阅读(127) 评论(0) 推荐(0)
摘要:一、配置: 1.打开Notepad++: 2. 按下F5,或者打开Run->Run… 3. 弹出Run的窗口 3. 这一步是最关键的,将下列语句拷贝粘贴至输入框中:cmd /k Python "$(FULL_CURRENT_PATH)" & PAUSE & EXIT 单击Save…注意:如果安装了l 阅读全文
posted @ 2016-04-20 13:30 狭隘龙 阅读(607) 评论(0) 推荐(0)
摘要:函数名 描述 示例 结果 pi 圆周率 math.pi 3.1415926535898 abs 取绝对值 math.abs(-2012) 2012 ceil 向上取整 math.ceil(9.1) 10 floor 向下取整 math.floor(9.9) 9 max 取参数最大值 math.max 阅读全文
posted @ 2016-04-19 20:38 狭隘龙 阅读(6772) 评论(0) 推荐(0)
摘要:搜索某属性: select exp from player where level = 2; 创建表: create table player (level integer primary key, name text); 删除表: drop table player; 更新数据: update p 阅读全文
posted @ 2016-04-13 16:22 狭隘龙