In this Document
Symptoms
Cause
Solution
APPLIES TO:
Oracle Order Management - Version 12.0.4 to 12.1.3 [Release 12.0 to 12.1]
Information in...
分类:
移动开发 时间:
2014-11-12 16:37:13
阅读次数:
236
OC使用引用计数来管理内存,每一个继承NSObject的对象,内部都维护了一个引用计数器retainCount,当对象创建时(调用alloc或者new)引用计数器会+1, 手动调用retain()方法可以使引用计数器+1,手动调用release()方法可以使引用计数器-1,当引用计数器为0时,对象会自动调用"析构函数" dealloc()方法来回收资源和释放内存。
这样当一个对象被多个地方使用和...
分类:
其他好文 时间:
2014-11-12 15:06:53
阅读次数:
222
关于VS2013优化后MFC中对文件读取失败的解析(debug下可以,release下失败)...
分类:
编程语言 时间:
2014-11-12 13:53:27
阅读次数:
206
解决问题:net.sf.ehcache.util.UpdateChecker:98]Newupdate(s)found:2.4.7[http://www.terracotta.org/confluence/display/release/Release+Notes+Ehcache+Core+2.4].Pleasecheckhttp://ehcache.orgforthelatestversion.因为项目用到了ehcache,所以tomcat每次启动日志就打印n..
分类:
Web程序 时间:
2014-11-12 11:56:16
阅读次数:
292
1、Eclipse for Mac:http://mirrors.ustc.edu.cn/eclipse/technology/epp/downloads/release/indigo/SR2/eclipse-jee-indigo-SR2-macosx-cocoa-x86_64.tar.gz2、Jd...
分类:
系统相关 时间:
2014-11-11 22:42:42
阅读次数:
372
多线程并发访问在Cocos2d-x引擎中用的不是很多,这主要是因为中整个结构设计没有采用多线程。源自于Objective-C的Ref对象,需要使用AutoreleasePool进行内存管理,AutoreleasePool是非线程安全的,所有不推荐在子多线程中调用Ref对象的retain()、 release()和autorelease()等函数。另外,OpenGL上下文对象也是不支持线程安全的。但...
分类:
编程语言 时间:
2014-11-11 21:09:20
阅读次数:
245
In this Document
Purpose
Questions and Answers
References
APPLIES TO:
Oracle Order Management - Version 11.5 to 12.2.3 [Release 11.5 to 12.2]...
//用dba匿名登录[oracle@enfo212 ~]$ sqlplus / as sysdbaSQL*Plus: Release 11.2.0.1.0 Production on Wed May 8 16:39:53 2013Copyright (c) 1982, 2009, Oracle. A...
分类:
数据库 时间:
2014-11-11 14:11:30
阅读次数:
385
在11g中有个新特性是系统的分区表,下面来做个实验:
SQL> select * from v$version;
BANNER
--------------------------------------------------------------------------------
Oracle Database 11g Enterprise Edition Release 11.2...
分类:
数据库 时间:
2014-11-11 12:42:58
阅读次数:
163
虚拟机里边是Windows server 2003的系统,本机VS2008开发的exe程序移植到虚拟机中Release版本正常,Debug版本不能正常启动报“应用程序配置不正确”,在安装了vcredist_x86.exe之后仍然无法解决问题,使用Dependency Walker跟踪报Error: ...
分类:
其他好文 时间:
2014-11-11 10:46:46
阅读次数:
196