码迷,mamicode.com
首页 >  
搜索关键字:end    ( 30778个结果
VS2010,原来还有这些快捷键,果断记下来!
一直觉得VS的快捷键跟eclipse比起来差远了,那些因为不知道还有如此多有效却不知的快捷键阿         1. 检查括号匹配(在左右括号间切换): Ctrl +]         2. 选中从光标起到行首(尾)间的代码: Shift + Home(End)         3、注释选定块:Control+K,Control+C         4、取消注释块:Control+K,Co...
分类:其他好文   时间:2014-11-05 21:35:39    阅读次数:220
Tomcat全攻略
内容:一:简单介绍二:安装及配置三:应用四:综述參考资料关于作者 相关内容: TCP/IP 介绍 TCP/IP 介绍 !== End...
分类:其他好文   时间:2014-11-05 21:03:51    阅读次数:199
sql server 查询数据库所有的表名+字段
原文:sql server 查询数据库所有的表名+字段SELECT * FROM INFORMATION_SCHEMA.columns WHERE TABLE_NAME='Account'SELECT (case when a.colorder=1 then d.name else '' end) ...
分类:数据库   时间:2014-11-05 19:19:28    阅读次数:236
USACO 2014 JAN滑雪场建设{Gold题2}
滑雪场建设{Gold题2}【问题描述】滑雪场的设计图是一个M*NM x N (1 b then max:=a47 else max:=b;48 end;49 50 51 begin52 openit;53 datain;54 while flag>0 do55 begi...
分类:其他好文   时间:2014-11-05 17:01:42    阅读次数:304
Delphi 设计模式:《HeadFirst设计模式》Delphi7代码---命令模式之SimpleRemoteControlTest [转]
//命令的接受者unit uReceiveObject;interfacetype TLight = class(TObject) public procedure Open; procedure Off; end; TGarageDoor = class(TObject) public proce...
分类:Windows程序   时间:2014-11-05 14:31:31    阅读次数:277
queryList界面,新收、旧存、已结、未结功能的错误与收获
1.关于日期的问题,在利用日期作为filter的条件时,稍不注意就会造成某一个天的缺失。     原因在于:对于日期要设定一个合理的分割规则,使得各个时间段的时间没有遗漏。     改进方法:由于存储的时间是yyyy-MM-dd格式,所以所有参数的时分秒都是0。因此,对一个时间段的end进行处理,在传参之后对这个时间的 天数+1,使用这个时间段时,使用   2.在对四种条件进行查询时,需...
分类:其他好文   时间:2014-11-05 11:02:54    阅读次数:312
leetcode Remove Nth Node From End of List
Given a linked list, remove thenthnode from the end of list and return its head.For example, Given linked list: 1->2->3->4->5, and n = 2. After re...
分类:其他好文   时间:2014-11-05 08:04:14    阅读次数:177
iOS UIPageControl与UIScrollView配合使用代码
#import "RootViewController.h" #import "RootView.h" @interface RootViewController () @property(nonatomic,retain)RootView *myview; @end @implementation RootViewController - (id)initWithNibName:(NSSt...
分类:移动开发   时间:2014-11-04 22:44:59    阅读次数:312
C++之数据结构,单链表
用结构体构建单链表例子:int main (){ struct student head; struct student body; struct student end; struct student *p; head.a = 10; head.b = 20; body...
分类:编程语言   时间:2014-11-04 22:27:31    阅读次数:197
不使用crosstab实现PostgreSQL的行转列应用
表结构及数据 select logdatetime,sum(login) as login,sum(logo) as logo from( SELECT date(logdatetime) AS "logdatetime", case logfrom when 'login' then COUNT(id) else 0 end AS "login", case logfrom wh...
分类:数据库   时间:2014-11-04 21:10:41    阅读次数:846
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!