解决办法是将qmake换成4.8的,qmake5.2的支持opencv支持的不是很好
分类:
其他好文 时间:
2014-05-10 19:48:54
阅读次数:
247
Where's Waldorf?
Given a m by n grid
of letters, ( ),
and a list of words, find the location in the grid at which the word can be found. A word matches a straight, uninterrupted line o...
分类:
其他好文 时间:
2014-05-02 10:59:15
阅读次数:
514
29. 数组中出现次数超过一半的数字. 方法a. 排序取中 O(nlogn). 方法b.
partition 函数分割找中位数 >=O(n). 方法c. 设计数变量,扫描一遍。 O(n).#include bool Invalid_Input
= false;int getNumber(int da...
分类:
其他好文 时间:
2014-05-02 10:46:15
阅读次数:
340
在表单中输入数据提交时提示invalid field value for
field"product.sale
Date".(product.sale是文本框的名字,Date是其数据类型)原因:输入数据的格式错误。希望:将提示改为,如:“格式错误,请输入正确的格式”。方法:使用国际资源,PS:国际资...
分类:
其他好文 时间:
2014-05-01 20:09:45
阅读次数:
281
iframe中的各种跳转方法(转)一、背景A,B,C,D都是jsp,D是C的iframe,C是B的iframe,B是A的iframe,在D中跳转页面的写法区别如下。二、JS跳转window.location.href、location.href本页面跳转,D页面跳转parent.location.h...
分类:
其他好文 时间:
2014-05-01 19:26:02
阅读次数:
356
原文:http://blog.sina.com.cn/s/blog_6203dcd60100y1vi.html 【第十一阶段 :命名位置服务】
在前面我们不止一次提到了命名位置服务(Naming & Location
Service)。在不同的架构或者公司里面,这个名字往往不一样,比如,在ja...
分类:
Web程序 时间:
2014-05-01 07:21:25
阅读次数:
385
描述The SELECT statement is used to select data from
a database.The result is stored in a result table, called the
result-set.大意:select用来从数据库中挑选数据有以下两种形...
分类:
数据库 时间:
2014-05-01 06:14:32
阅读次数:
467
qt有一套资源管理系统,如果将资源编译到可执行文件中,则可以直接访问可执行文件中的资源文件,
访问方式如下
:/prefix/location
但有的时候可以因为资源比较大,所以我们需要把资源编译成外部二进制资源文件*.rcc文件,这样可以提高可执行文件的加载速度。
编译方式rcc -binary myresource.qrc -o myresource.rcc
然后通过
QResou...
分类:
其他好文 时间:
2014-04-30 22:14:39
阅读次数:
487
时间限制:2000ms
单点时限:200ms
内存限制:256MB
描述
Given N arithmetic expressions, can you tell whose result is closest to 9?
输入
Line 1: N (1
Line 2..N+1: Each line contains an expression in the f...
分类:
其他好文 时间:
2014-04-29 13:42:21
阅读次数:
268
long switchState = 0xf0000000000L;
int result = (switchState & 0xff00000000L) > 0 ? 0x01 : 0x00;
你觉得result是多少?1
result = (switchState & 0xff000000) > 0 ? 0x01 : 0x00;
你觉得result是多少?1 【还是没有完...
分类:
编程语言 时间:
2014-04-29 13:24:21
阅读次数:
323