MSSQL 语句--声明变量 DECLARE @i int DECLARE @xh varchar(10) DECLARE @name varchar(10) Set @i = 0 --开始循环插入数据WHILE @i < 100 BEGIN ...
分类:
数据库 时间:
2015-09-15 18:08:38
阅读次数:
262
题目大意:求n位数的平方的后几位结果是987654321的个数是多少。分析:刚看到这道题的时候怀疑过有没有这样的数,于是暴力跑了一下,发现还真有,9位的数有8个,如下:i=111111111, i*i=12345678987654321i=119357639, i*i=142462459876543...
分类:
其他好文 时间:
2015-09-15 18:09:34
阅读次数:
142
Given a 2D binary matrix filled with 0's and 1's, find the largest square containing all 1's and return its area.For example, given the following matr...
分类:
其他好文 时间:
2015-09-15 18:08:34
阅读次数:
208
Apache Spark社区2015年9月9日发布了1.5版本,该版本由230+开发人员和80+机构参与,修复了1400多个补丁,该版本可以通过 http://spark.apache.org/downloads.html进行下载。Spark1.5中最主要的修改内容是为了提升Spark性能、可用性和...
分类:
Web程序 时间:
2015-09-15 18:06:55
阅读次数:
262
今天上午解决Bug,一个上午的时间;log:11-01 14:49:14.826: E/InputEventReceiver(30810): Exception dispatching input event.11-01 14:49:14.850: E/AndroidRuntime(30810): ...
分类:
其他好文 时间:
2015-09-15 18:08:41
阅读次数:
197
文件file内容赋值到file2中1. cp file1 file22. cat file1 > file23. cat file24. dd if=file1 of=file2 (if =infile ; of=outfile )5 cat file | cat > file2关于给一个文件读,....
分类:
系统相关 时间:
2015-09-15 18:07:02
阅读次数:
325
AIX系统中使用bsdlog函数输出内核信息(1)修改syslogd进程的配置文件/etc/syslog.conf,使用echo命令在文件末尾添加内容“kern.info /tmp/kerninfo.log”echo “kern.info /tmp/kerninfo.log” >> /etc/sys...
分类:
其他好文 时间:
2015-09-15 18:07:51
阅读次数:
193
使用Visual Studio 2013进行单元测试--初级篇
分类:
其他好文 时间:
2015-09-15 18:06:34
阅读次数:
186
先看看为什么要清除浮动:现有html结构如下: css:.content{ border: 1px solid #ccc; background: #fc9; color: #fff; margin: 50px auto; padding: 50px;}.di...
分类:
Web程序 时间:
2015-09-15 18:06:30
阅读次数:
150
Part 1: man PagesAs previously mentioned, UNIX was the operating system from which the Linux foundation was built. The developers of UNIX created help...
分类:
系统相关 时间:
2015-09-15 18:07:20
阅读次数:
376
QML 基本元素可以分为可视元素和不可视元素两类。可视元素(例如前面提到过的Rectangle)具有几何坐标,会在屏幕上占据一块显示区域。不可视元素(例如Timer)通常提供一种功能,这些功能可以作用于可视元素。本章我们将会集中介绍集中最基本的可视元素:Item、Rectangle、Text、Ima...
分类:
其他好文 时间:
2015-09-15 18:04:51
阅读次数:
204
我们将开始于BAGA业务域的一个小片断:包括我们旅行的目的地和我们的奇客们在这次旅行的住所。Code First的美妙在于域类的定义代码与EF数据模型所依赖的代码是一样的。我们只需要开始于代码就可以了,例2-1,分别展示了Destination类和Loadging类。在开始的案例中,我们要保持类的简...
分类:
其他好文 时间:
2015-09-15 18:04:30
阅读次数:
138
cocos2d::Vectorcocos2d::Vector是一个封装好的能动态增长顺序访问的容器。cocos2d::Vector中的元素是按序存取的,它的低层实现数据结构是标准模版库中的标准顺序容器std::vector。T- 元素类型T的类型必须是继承自cocos2d::Object类型的指针。...
分类:
其他好文 时间:
2015-09-15 18:07:05
阅读次数:
157
#include #include #include #include #include using namespace std;const int maxn=20005;int MaxRepresstation(char * S, int len ) { int i = 0, j = 1...
分类:
其他好文 时间:
2015-09-15 18:04:15
阅读次数:
126
android ListView的上部下拉刷新下部点击加载更多具体实现及拓展ListView下拉刷新,上拉自动加载更多 下拉刷新以及加载更多
分类:
移动开发 时间:
2015-09-15 18:07:06
阅读次数:
177
HashMap的key能是对象吗?key能是可变对象吗?当key是可变对象是会带来什么问题???
分类:
其他好文 时间:
2015-09-15 18:06:44
阅读次数:
130
四则运算题目生成程序任务:实现一个自动生成小学四则运算题目的命令行程序。使用VS 2012进行开发,采用C++或者C#语言实现,可以使用.Net Framework,运行环境为32-bit Windows 7或8。提交的代码要求经过Code Quality Analysis工具的分析并消除所有的警告...
分类:
其他好文 时间:
2015-09-15 18:04:16
阅读次数:
144