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
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
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
1、算术运算符: "^"表示指数,"%"求模
如:
print(9^0.5); --> 表示9的平方根
x = 3.14567;
print(x%1); --> 获取小数部分
print(x - x%1); --> 获取整数部分
print(x - x%0.01); --> 获取精确到小数点后两位的结果,没有做四舍五入处理
2.、关系运算符,对...
分类:
其他好文 时间:
2014-05-04 18:59:25
阅读次数:
325
package mytest;
import java.util.*;;
public class mymain {
public static void main(String[] args) {
// TODO Auto-generated method stub
System.out.print(new Date());
Properties p=System.get...
分类:
编程语言 时间:
2014-05-04 17:52:02
阅读次数:
363