06-02 11:49:53.676: E/AndroidRuntime(12974): FATAL
EXCEPTION: main06-02 11:49:53.676: E/AndroidRuntime(12974):
java.lang.RuntimeException: Unable to s...
分类:
移动开发 时间:
2014-06-02 16:25:37
阅读次数:
260
单元测试的目的
首先,Junit单元测试要实现的功能,就是用来测试写好的方法是否能够正确的执行,一般多用于对业务方法的测试。
单元测试的环境配置
1.在AndroidManifest清单文件的Application节点下,引入单元测试使用的库
2.在AndroidManifest清单文件与Application节点平行的节点中,添加instrumentation节点
下面...
分类:
移动开发 时间:
2014-06-02 15:10:33
阅读次数:
289
在探讨Java组合模式之前,先要明白几个概念的区别:继承、组合和聚合。继承是is-a的关系。组合和聚合有点像,有些书上没有作区分,都称之为has-a,有些书上对其进行了较为严格区分,组合是contains-a关系,聚合是has-a关系。组合方式中被组合的对象生命周期不能超过整体,一般写代码时是直接在...
分类:
其他好文 时间:
2014-06-02 12:52:24
阅读次数:
224
Scope defines where in a program a variable is accessible. Ruby has four types of variable scope, local, global, instance and class....
分类:
其他好文 时间:
2014-06-02 10:37:39
阅读次数:
241
memcpystack proc dest,src,cnt ;cnt is a count of
dwords ;this function has a granularity of dwords mov edx,src mov eax,dest sub
eax...
分类:
其他好文 时间:
2014-06-02 08:31:34
阅读次数:
432
Given a linked list, determine if it has a
cycle in it.Follow up:Can you solve it without using extra
space?求链表是否有环的问题,要考虑链表为空的情况,定义一个快指针和一个慢指针,如果快指针和...
分类:
其他好文 时间:
2014-06-02 08:05:16
阅读次数:
255
4.2 THE COMPLETENESS THEOREM(2) If A theory
$\mathbf{T}$ has a model, then it is consistent.ProofSuppose that $\mathbf{T}$
has a mode $\mathbf{\alpha}...
分类:
其他好文 时间:
2014-06-02 06:23:48
阅读次数:
189
Oraclejob无法自动运行报以下大量的错
Errorsinfile/oracle/admin/orcl/bdump/orcl_j000_2158798.trc:
ORA-12012:erroronautoexecuteofjob482
ORA-12008:errorinmaterializedviewrefreshpath
ORA-12170:TNS:Connecttimeoutoccurred
ORA-06512:at"SYS.DBMS_SNAPSHOT",line1883
..
分类:
数据库 时间:
2014-06-02 04:33:52
阅读次数:
332
最近在大学毕设项目基础上新增一些功能,基于Struts2开源框架,数据库采用的是MySQL。写完后台的新功能代码,单元测试也顺利通过,去整合前台,但是当使用JSP页面操作的时候,没想到报异常了。截图如下:java.sql.SQLException:Unknowntype‘246incolumn2of4inbinary-encodedres..
分类:
数据库 时间:
2014-06-02 03:02:52
阅读次数:
639
iOS7刚发布的时候,总是出现这个 Can't add self as subview 的崩溃,团队内部没出现过,但是外部用户的crash频频上报这个崩溃。
异常描述和崩溃堆栈是这样的:
*** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: 'Can't add se...
分类:
其他好文 时间:
2014-06-01 17:32:08
阅读次数:
489