注意:在传值的是时候,不要传中文,尽量传数字,其次是字母1.limit:从第几条开始(n-1),显示几条$sql = "select * from movie
limit $sum,$pageSize";(使用变量,可以方便数据的添加)2.隔行显示颜色a.用css添加tr:nth_child(odd...
分类:
数据库 时间:
2014-07-22 23:15:12
阅读次数:
454
#include#includeusing namespace std;#define maxn
200005class Node{public: int l,r; int add;//附加值 int sum;}node[maxn];int
getRight(int n){//获得...
分类:
其他好文 时间:
2014-07-22 23:14:14
阅读次数:
431
public class DoTXT { // 定义成员变量:路径,文件对象,临时变量
private String path; // 文件路径 private File f; private FileReader fr; // 所需文件流对象
private File...
分类:
其他好文 时间:
2014-07-22 23:13:15
阅读次数:
300
1. build path:a) source
folder:包括openfire和各插件的代码。b)
libraries:build/lib下jar包和插件下jar包,jdk/lib/tools.jar(编译jsp需要)。2. ant
build:build/build.xmla) openfir...
分类:
其他好文 时间:
2014-07-22 23:12:36
阅读次数:
489
[share]path=/home/an/shareavailable=yesbrowse
able=yespublic=yeswritable=yessecurity = userusername map =
/etc/samba/smbusers[share]comment = Shared F...
分类:
其他好文 时间:
2014-07-22 23:11:34
阅读次数:
332
事情是这样的,今天写测试代码的时候发现,进程 A 调用进程 B,A 与 B不在同一路径下,B
中使用Environment.CurrentDirectory获取当前路径,本以为获取的路径应为 B 所在目录,结果证明,获取路径为 A 路径;要获取 B
所在路径,需使用:Path.GetDirector...
分类:
其他好文 时间:
2014-07-22 23:09:33
阅读次数:
250
1、解压源码2、把build/eclipse中的文件cp到源码跟目录,并修改文件名,前面增加"."号,变成eclipse工程。3、导入eclipse,
把build/lib/, build/lib/dist, build/lib/merge,build/lib/src 下的包放到build path...
分类:
其他好文 时间:
2014-07-22 23:08:35
阅读次数:
309
/** * Definition for binary tree * struct
TreeNode { * int val; * TreeNode *left; * TreeNode *right; * TreeNode(int x) :
val(x), left(...
分类:
其他好文 时间:
2014-07-22 23:07:34
阅读次数:
312
根据等式(2-14)假如w = 4 数值范围在-8 ~ 7之间 2^w = 16x = 5,
y = 4的情况下面x + y = 9 >=2 ^(w-1) 属于第一种情况sum = x + y = 9- 2^w = –7sum – x ==
y?-7 – 4 = – 11 属于第三种情况 负溢出su...
分类:
移动开发 时间:
2014-04-30 17:08:03
阅读次数:
443
Block1.1block与函数指针函数:int sum(int x, int y){ retrun
x + y;}函数指针:把上面函数原型int sum(int x, int y)中的函数名替换成(*p),即可得到一个函数指针int (*p)(int x,
int y)。这个函数表示指针p指向一....
分类:
其他好文 时间:
2014-04-30 16:31:34
阅读次数:
604