CSS命名规范CSS样式命名整理页面结构容器: container/wrap 整体宽度:wrapper
页头:header 内容:content 页面主体:main 页尾:footer 导航:nav 侧栏:sidebar 栏目:column
中间内容:center导航导航:nav 导航:mainba...
分类:
Web程序 时间:
2014-05-27 01:32:59
阅读次数:
374
常用的CSS命名规则头:header内容:content/container尾:footer导航:nav侧栏:sidebar栏目:column页面外围控制整体佈局宽度:wrapper左右中:left
right center登录条:loginbar标志:logo广告:banner页面主体:main热...
分类:
Web程序 时间:
2014-05-27 01:25:49
阅读次数:
405
http://column.iresearch.cn/u/haipo1023/668158.shtml赵宏民1月12日文
近日看电影《一路顺疯》,看到一句台词,一个男人一生要保护好四样东西:家里的父母,脚下的土地,怀里的女人,身边的兄弟!
啧啧~~说的真好,人生在世,当然要有值得自己尽力去保护的一....
分类:
其他好文 时间:
2014-05-23 08:43:56
阅读次数:
277
1、 创建表完整语法
CREATE TABLE [schema.]table
(column datatype [, column datatype] … )
[TABLESPACE tablespace]
[PCTFREE integer]
[PCTUSED integer]
[INITRANS integer]
[MAXTRANS integer]
[STORAGE sto...
分类:
数据库 时间:
2014-05-22 06:25:53
阅读次数:
384
请考虑如下情况:在数据库升级时,不同版本的数据库,他们定义的表结构完全可能是不一样的,比如V1.0的表A有10个column,而在V1.1的表A有12个colum,在升级时,表A增加了两列,此时我们应该怎么做呢。总体思路1,将表A重命名,改了A_temp。2,创建新表A。3,将表A_temp的数据插...
分类:
移动开发 时间:
2014-05-22 02:38:48
阅读次数:
390
The sp_rename procedure is not avialable in SQL
CE!In Sql Server 2005 Management Studio you have to create a new column with the
new name, then you ha...
分类:
数据库 时间:
2014-05-19 17:13:55
阅读次数:
342
1 ALTER TABLE table_name CHANGE COLUMN old_col_name
new_col_name datatype; #改变table的列名以及列的类型
分类:
数据库 时间:
2014-05-19 07:58:45
阅读次数:
378
控制worker的移动,推动箱子到目标位置。Point.java(点,用以计算人当前的位置)package
edu.pushbox.util;public class Point { public int row; public int column; public
Point(i...
分类:
其他好文 时间:
2014-05-16 04:26:54
阅读次数:
434
[intrinsic column flags] (基本字段类型标识)- PK:
primary key (column is part of a pk) 主键- NN: not null (column is nullable) 非空-
UQ: unique (column is part of ...
分类:
数据库 时间:
2014-05-15 14:27:20
阅读次数:
301
【题目】
原文:
1.7 Write an algorithm such that if an element in an MxN matrix is 0, its entire row and column is set to 0.
译文:
写一个函数处理一个MxN的矩阵,如果矩阵中某个元素为0,那么把它所在的行和列都置为0.
【分析】
【思路一】
遍历一次矩阵...
分类:
其他好文 时间:
2014-05-15 12:27:37
阅读次数:
293