广告先:
LibUIDK界面库:制作QQ、360界面时,你能找到的最强大的界面库。基于DirectHWND技术!
3.1 窗口的创建
一个简单的win32程序如下(假设工程名为“HelloWin32”,下面的代码是使用vc6.0创建一个名为HelloWin32的“Win32 Application”,并且选择“A typical "Hello World" application”后创...
May Day Holiday
Time Limit: 2 Seconds
Memory Limit: 65536 KB
As a university advocating self-learning and work-rest balance, Marjar University has so many days of rest, including holiday...
分类:
其他好文 时间:
2015-04-25 21:16:28
阅读次数:
173
http://ishow.arting365.com/work/1712165/20150424
http://ishow.arting365.com/work/1712166/20150424
http://ishow.arting365.com/work/1712167/20150424
http://ishow.arting365.com/work/1712168/20150424
...
分类:
其他好文 时间:
2015-04-25 21:14:27
阅读次数:
117
DatePicker与TimePicker是用来显示时间的控件。
onDateChanged、 onTimeChanged分别是控件的触发事件。
MainActivity.java:
import java.text.SimpleDateFormat;
import java.util.Calendar;
import java.util.TimerTask;...
分类:
移动开发 时间:
2015-04-25 21:16:13
阅读次数:
184
CountDownLatch,一个同步辅助类,在完成一组正在其他线程中执行的操作之前,它允许一个或多个线程一直等待。
主要方法
public CountDownLatch(int count);
public void countDown();
public void await()
举例:
import java.text.SimpleDateFormat;
impo...
分类:
其他好文 时间:
2015-04-25 21:15:52
阅读次数:
116
Convert QWERTY to Dvorak
Time Limit: 2 Seconds
Memory Limit: 65536 KB
Edward, a poor copy typist, is a user of the Dvorak Layout.But now he has only a QWERTY Keyboard with a brokenCaps L...
分类:
其他好文 时间:
2015-04-25 21:13:12
阅读次数:
161
Two elements of a binary search tree (BST) are swapped by mistake.
Recover the tree without changing its structure.
Note:
A solution using O(n)
space is pretty straight forward. Could you devis...
分类:
其他好文 时间:
2015-04-25 21:15:52
阅读次数:
186
《1》
这个分页代码其实是单独的。他会默认调用Home控制器下的Index视图,然后传递一个page参数。
Inde视图
@{
ViewBag.Title = "Index";
}
body {
padding: 0;
margin: 0;
font: normal 14px/25px "\5FAE\8F6F\96C5\9E...
分类:
Web程序 时间:
2015-04-25 21:13:45
阅读次数:
125
通过SMTP发邮件...
分类:
其他好文 时间:
2015-04-25 21:13:41
阅读次数:
115
声明:本系列博客参考资料《大话设计模式》,作者程杰。
用原型实例指定创建对象的种类,并且通过拷贝这些原型创建新的对象。Prototype模式允许一个对象再创建另外一个可定制的对象,根本无需知道任何如何创建的细节,通过将一个原型对象传给那个要发动创建的对象,这个要发动创建的对象通过请求原型对象拷贝它们自己来实施创建。它主要面对的问题是:“某些结构复杂的对象”的创建工作;由于需求的变化...
分类:
Web程序 时间:
2015-04-25 21:12:40
阅读次数:
209
Beauty of Array
Time Limit: 2 Seconds
Memory Limit: 65536 KB
Edward has an array A with N integers. He defines the beauty of an array as the summation of all distinct integers in the arr...
分类:
其他好文 时间:
2015-04-25 21:14:48
阅读次数:
220
问题:翻转字符串中的单词顺序,如“hello world”变成“world hello”。要求使用常量空间。
c++代码如下:
void reverse(string &s, int start, int end){
int len=end+start;
int center=len/2;
for(int i=start;i<center;i++){
...
分类:
其他好文 时间:
2015-04-25 21:13:09
阅读次数:
127
表格名称#+CAPTION: 出厂/供应链/销售/售后导出HTML表格后,会在表格正上方出现如下表格名称Table 1: 出厂/供应链/销售/售后...
分类:
系统相关 时间:
2015-04-25 21:12:27
阅读次数:
167
在讨论get方法和post方法的区别时,我们经常会提到两点:
1、get传送的数据量较小,不能大于2KB,而post传送的数据量较大,一般被默认为不受限制;
2、get安全性非常低,但是post安全性较高;
究其根本,为什么呢?就需要提到http报文以及http报文的格式。
首先我们先看一下HTTP请求报文的通用格式:
在《计算机网络——自顶向下方法》一书中提到很...
分类:
Web程序 时间:
2015-04-25 21:11:48
阅读次数:
146
http://www.verycd.com/topics/2900036/http://www.verycd.com/topics/2935380/弱水客户端:http://www.verycd.com/topics/2887366/
分类:
移动开发 时间:
2015-04-25 21:10:54
阅读次数:
128
数据库只是一个工具 简写:SSMS 全拼:SQL Server Management Studio服务器名称: 数据库服务所在的电脑的ip地址 通过".(本台)","lacal(本地)"登陆点击电脑开始→ 运行→ cmd→ net start mssqlserver 服务器的启动 net...
分类:
数据库 时间:
2015-04-25 21:12:40
阅读次数:
241
在一个servlet的请求中,响应的方式的通常有四式,response.getWriter(),response.getOutputStream(),request.getRequestDispatcher("ajax.jsp").forward(request, response) 和 resp....
分类:
其他好文 时间:
2015-04-25 21:11:01
阅读次数:
184