1. 交换两个数值
x, y = y, x; //等价于 x = y, y =x;
2. 变量初始化问题
a, b, c = 0;
print(a,b,c); --> 0 nil nil
仅对第一个值复制,所以要初始化一组变量,应该提供多个初始值
a, b, c = 0, 0, 0;
print(a, b, c); --> 0 0 0
3. "尽可能...
分类:
其他好文 时间:
2014-05-10 10:17:39
阅读次数:
272
1、函数是一种 “第一类值”
a = {p = print};
a.p("hello");
a = print;
a("Hi");
2、 table 提供的函数 table.sort
network = {
{name = "lua", IP = "192.168.1.1"},
{name = "CPP", IP = "192.168.1.2"}
};
f...
分类:
其他好文 时间:
2014-05-10 09:21:02
阅读次数:
273
-- 第 5 章 函数-- 一种对语句和表达式进行抽象的主要机制print(os.date());
-- 打印日期 Sun Apr 20 12:44:46 2014-- 一看到sun,感慨广州没有晴天-- 函数没有参数也要括号--
特殊情况:只有一个参数的时候, 并且参数一个st...
分类:
其他好文 时间:
2014-05-09 16:37:05
阅读次数:
279
#coding:utf8import sys,osdef process(path): for f
in os.listdir(path): fin = open(path+"/"+f,"r") print...
分类:
编程语言 时间:
2014-05-09 12:41:07
阅读次数:
362
1. type()函数,指出指定对象的类型。2.
tuple和list的区别:tuple是不能改变的,与之对应,它没有remove等函数,而list具有相应的函数3.tuple或者list访问:范围引用:
基本样式[下限:上限:步长]>>>print s1[:5] # 从开始到下标4 (下标5的元素...
分类:
其他好文 时间:
2014-05-09 11:27:19
阅读次数:
300
转载:http://blog.csdn.net/luols/article/details/6047962
在VS2010环境下运行水晶报表(当然要先装上Crystal Report For
VS2010),在SetDataSource方法附近提示“未知的查询引擎错误”,可按如下办法解决:打开app...
分类:
其他好文 时间:
2014-05-08 20:24:40
阅读次数:
576
XCode 内置GDB,我们可以在命令行中使用 GDB
命令来调试我们的程序。下面将介绍一些常用的命令以及调试技巧。po 命令:为 print object 的缩写,显示对象的文本描述(显示从对象的
description 消息获得的字符串信息)。比如:上图中,我使用 po 命令显示一个 NSDic...
分类:
其他好文 时间:
2014-05-08 20:08:55
阅读次数:
368
import org.junit.Test;
public class Multiple {
public void printMultiple99() {
int i = 1;
for (; i < 10; i++)
for (int j = 1; j <= i; j++)
System.out.print(j + "*" + i + "=" + i * j + " ...
分类:
其他好文 时间:
2014-05-07 06:46:25
阅读次数:
359
简单谈谈 Python 中容器的遍历和一下小技巧。
1、遍历单个容器
下面代码遍历一个 List 结构,同样适用于 Tuple、Set 结构类型
>>> x = [1, 2, 3, 'p' , 'y']
>>> for v in x:
... print(x)
...
1
2
3
p
y
遍历字典 Dict 结构也是...
分类:
编程语言 时间:
2014-05-07 04:12:39
阅读次数:
395
1.ubuntu14.04安装依赖sudo apt-get install
build-essential gawk m4 libasound2-dev libcups2-dev libxrender-dev xorg-dev
xutils-dev x11proto-print-dev binuti...
分类:
其他好文 时间:
2014-05-06 14:19:33
阅读次数:
343