1. 导入文件 2. 引用资源配置文件或者 多次引用没有ignore-unresolvable="true"一定会出"Could not resolve placeholder"异常。 Spring 2.5中,没有ignore-unresolvable属性,所以就不能使用上面的那种方法去配置,...
分类:
编程语言 时间:
2014-08-01 19:03:42
阅读次数:
250
错误举例:
..\..\Libraries\STM32_USB-FS-Device_Driver\inc\usb_type.h(21): error: #5: cannot open source input file "usb_conf.h": No such file or directory
这是因为没有设置 STM32 固件库的目录, 编译器就默认到 “Keil”根目录下的某某目录找...
分类:
其他好文 时间:
2014-08-01 16:07:51
阅读次数:
294
题目大意:
对平面上的点进行操作。
add x y 在 (x,y )上加一个点。
remove x y 移除 (x,y)上的点。
find x y 求出在(x,y)右上角离他最近的点,优先级是靠左,靠下。
思路分析:
find 操作 比较麻烦。
要保证x大的同时还要确保x最小,而且该x上还要有点。
这样要找大的时候要小的,就是在线段树上选择性的进入左子树还是右子树。
所以...
分类:
其他好文 时间:
2014-08-01 13:51:52
阅读次数:
241
Given an array, your task is to find the k-th occurrence (from left to right) of an integer v. To make the problem more difficult (and interesting!), you'll have to answer m such queries.
Input
Ther...
分类:
其他好文 时间:
2014-08-01 13:42:11
阅读次数:
170
Java的异常处理是通过5个关键字来实现的:try,catch,throw,throws,finally。JB的在线帮助中对这几个关键字是这样解释的: Throws: Lists the exceptions a method could throw. Throw: Transfers co...
分类:
编程语言 时间:
2014-08-01 13:29:11
阅读次数:
271
shell命令操作语法和JavaScript很类似,其实控制台底层的查询语句都是用JavaScript脚本完成操作的。Ø数据库1、Help查看命令提示helpdb.help();db.yourColl.help();db.youColl.find().help();rs.help();2、切换/创建...
分类:
数据库 时间:
2014-08-01 13:05:21
阅读次数:
402
可能是项目绑定的日志不是logback的jar包,而是其他包,具体可查看tomcat启动日志log4j:WARN No appenders could be found for logger (org.springframework.web.context.ContextLoader).log4j:...
分类:
其他好文 时间:
2014-08-01 12:50:31
阅读次数:
263
Determine whether an integer is a palindrome. Do this without extra space.click to show spoilers.Some hints:Could negative integers be palindromes? (i...
分类:
其他好文 时间:
2014-08-01 12:49:41
阅读次数:
186
在MyEclipse下编程时,保存的时候,如果出现如下图所示错误:
首先说明MyEclipse的默认编译语言是"ISO-8859-1",这个语言不支持中文,所以如果编辑的程序含有中文而且编译语言是"ISO-8859-1“则就会出现这个问题!
解决方很简单,只要把默认编译语言改成支持中文的就OK了。
改法如下:
window --> Preferences --> G...
分类:
系统相关 时间:
2014-08-01 10:56:31
阅读次数:
396
ioctl.h 分析
我自己画了个解析图。。。不要嫌弃丑啊。。。哈哈
type
The magic number. Just choose one number (after consultingioctl-number.txt ) and use it throughout the driver. This field is eight b...
分类:
其他好文 时间:
2014-08-01 10:55:41
阅读次数:
234