今天不知道按了什么,发现Eclipse右下角一直提示computing additional info,打开progress,里面同时有好几条一样的信息,但是一直也执行不完,上网查找方案,发现原来是用了content assist (也就是,按下alt + / ,会出来代码提示)的功能造成的。ecl ...
分类:
系统相关 时间:
2017-06-28 20:29:54
阅读次数:
1701
官方网站 In addition to simply finding the rows to be returned by a query, an index may be able to deliver them in a specific sorted order. This allows a ...
分类:
数据库 时间:
2017-06-28 17:04:02
阅读次数:
322
leetCode有道题Reverse Integer,因为int的最大值为2的31次方减一,最小值为-2的31次方。 我一开始的代码将res递归加放在try中,以为溢出会有异常,然而并没有。 因为出传入的参数为int类型,且内存和时间要求都能满足,所以long存放中间结果足够了。leet上有个哥们用 ...
分类:
编程语言 时间:
2017-06-27 20:48:32
阅读次数:
160
由于工作需要写一个解决winform程序自动更新下载重启的自动更新程序,之前用控制台全部实现,然而换成windows service出现了两个问题,一个是路径问题(http://baidu.com),一个是服务启动其他winform程序不显示UI问题。 本篇解决UI显示问题。 以下为引用尤尼博文(原 ...
分类:
Windows程序 时间:
2017-06-27 18:47:53
阅读次数:
1781
Backup Exec 2012 介绍 Backup Exec 2012 是一种为虚拟和物理环境提供保护的集成产品,能够简化备份和灾难恢复,并提供了无可匹敌的恢复功能。借助于强大的 Symantec V-Ray 技术,Backup Exec 2012 可以恢复整个服务器、关键 Microsoft 应 ...
分类:
系统相关 时间:
2017-06-26 22:36:01
阅读次数:
247
**本文章为官方文档译文,如果错误,请指正** 智能作业调度 现代应用程序可以在用户交互的直接流程之外异步执行其许多任务。这个异步任务的一些例子是: 更新网络资源 下载信息 更新后台任务 安排调用系统服务 智能调度这些工作可以提高应用程序的性能,以及系统健康方面,例如电池寿命。JobSchedule ...
分类:
其他好文 时间:
2017-06-26 21:15:00
阅读次数:
204
Given an m * n matrix M initialized with all 0's and several update operations. Operations are represented by a 2D array, and each operation is repres ...
分类:
其他好文 时间:
2017-06-24 09:55:44
阅读次数:
142
P2966 [USACO09DEC]牛收费路径Cow Toll Paths P2966 [USACO09DEC]牛收费路径Cow Toll Paths P2966 [USACO09DEC]牛收费路径Cow Toll Paths 题目描述 Like everyone else, FJ is alway ...
分类:
其他好文 时间:
2017-06-21 21:56:46
阅读次数:
120
class table1 { char<8> f1; char<80> f2; uint4 f3; uint4 f4; double f5; uint4 f6; uniquetree<f1,f2> Idx1; tree<f6>Idx2; }; Steps: step1:find(Idx1=(a,b) ...
分类:
数据库 时间:
2017-06-19 18:39:02
阅读次数:
158
题目链接:http://poj.org/problem?id=3368 Description You are given a sequence of n integers a1 , a2 , ... , an in non-decreasing order. In addition to that ...
分类:
其他好文 时间:
2017-06-18 19:24:35
阅读次数:
151