打包时报如下错误:Export aborted because fatal lint errors
were found. These are listed in the Lint View. Either fix these before running
Export again,or turn ...
分类:
移动开发 时间:
2014-06-29 13:01:46
阅读次数:
364
题目链接 Given an unsorted integer array, find the
first missing positive integer. For example, Given [1,2,0] return 3, and
[3,4,-1,1] return 2. Your algo...
分类:
其他好文 时间:
2014-06-29 07:44:48
阅读次数:
321
1.expected identifier before numeric constant
一般情况下是枚举类型中的某个变量已经被#define定义过一次了,在项目空间中搜索你枚举类型中的所有变量类型,看看是否被#define过,如果被#define过,就把#define的删除或换个名字。
分类:
其他好文 时间:
2014-06-13 14:15:10
阅读次数:
201
Welcome to the wonderful world of
portability... or rather the lack of it. Before we start analyzing these two
options in detail and take a deeper loo...
分类:
系统相关 时间:
2014-06-11 22:05:34
阅读次数:
407
题目:Given a linked list and a valuex, partition it
such that all nodes less thanxcome before nodes greater than or equal tox.You
should preserve the or...
分类:
其他好文 时间:
2014-06-07 20:35:55
阅读次数:
236
AOP里的说明,之间的关系
l Joinpoint:拦截点,如某个业务方法。
l Pointcut:Joinpoint的表达式,表示拦截哪些方法。一个Pointcut对应多个Joinpoint。
l Advice: 要切入的逻辑。
n Before Advice 在方法前切入。
n After Advice 在方法后切入,抛出异常时也会切入。
n After Returni...
分类:
其他好文 时间:
2014-06-07 14:46:04
阅读次数:
237
Partition ListGiven a linked list and a valuex,
partition it such that all nodes less thanxcome before nodes greater than or
equal tox.You should pres...
分类:
其他好文 时间:
2014-06-07 06:24:57
阅读次数:
179
通过前2篇文章,您一定对JUnit有了一个基本的了解,下面我们来探讨一下JUnit4中一些高级特性。一、高级Fixture上一篇文章中我们介绍了两个Fixture标注,分别是@Before和@After,我们来看看他们是否适合完成如下功能:有一个类是负责对大文件(超过500兆)进行读写,他的每一个方...
分类:
编程语言 时间:
2014-06-05 22:14:37
阅读次数:
560
1、触发器:trigger 1、触发器创建语法4要素: 1、监视地点:table
2、监视事件:insert / update / delete 3、触发时间:after / before 4、触发事件:insert / update /
delete 2、需求: 1、商品表:goods 订单表:....
分类:
数据库 时间:
2014-06-04 16:20:35
阅读次数:
356
1.运行终端,执行命令行进入missing file目录,然后运行svn delete
nameOfMissingFile或git rm nameOfMissingFile2.删除隐藏的.svn文件。命令行运行defaults write
com.apple.finder AppleShowAllF...
分类:
其他好文 时间:
2014-06-03 16:20:06
阅读次数:
405