Java虚拟机在加载类的时候,先初始化父类静态变量,再初始化子类静态变量,然后加载父类,最后加载子类
public class Parent {
static{
System.out.println("static parent");
}
public Parent(){
System.out.println("parent loaded");
}
public...
分类:
编程语言 时间:
2014-08-12 19:01:54
阅读次数:
321
开启了PHP 的oci8 扩展,但是打印 var_dump ( get_loaded_extensions() )还是没有出现oci8 ,pdo_oci,pdo_odbc扩展。
之后去oracle官网下载 ,解压缩,之后修改系统的环境变量,还是无法使用。
最后的解决方法,安装 OracleDatabaseInstantClient11g11.2.0.3.0 x64 ,安装之后就可以正常。
...
分类:
Web程序 时间:
2014-08-12 00:39:24
阅读次数:
573
OS X下运行AlphaSim命令时,提示以下信息
dyld: Library not loaded: /usr/local/lib/libgomp.1.dylib
本文给出了一种解决的方法
分类:
其他好文 时间:
2014-08-10 21:28:10
阅读次数:
599
function loaded() { var myscroll=new iScroll("wrapper",{hScrollbar:false, vScrollbar:false});}window.addEventListener("load",loaded,false);http://www....
分类:
移动开发 时间:
2014-08-08 20:42:36
阅读次数:
229
1.解决的办法:GDB调试时使用list命令时出现 “No symbol table is loaded. Use the "file" command”提示,其实是C编译器的选项CFLAGS没有设置好,gcc -o进行编译时不用不用写“-g”选项,只需在makefile文件开头写上“CFLAGS ...
分类:
数据库 时间:
2014-08-08 12:32:56
阅读次数:
4489
一:问题 targets中证书的设置1.项目支持多设备(Xcode5.1.1支持低版本)2.真机测试要确保Code Siging 设置没问题支持的最低版本二 :问题:image not foundLibrary not loaded: /System/Library/Frameworks/AdSup...
分类:
其他好文 时间:
2014-08-07 18:31:40
阅读次数:
271
如果uwsgi错误中提示
*** no app loaded. going in full dynamic mode ***
执行
[plain] view
plaincopy
aptitude install uwsgi-plugin-python
之后重启uwsgi...
分类:
其他好文 时间:
2014-08-07 13:16:10
阅读次数:
185
rails nameerror uninitialized constant classwill occur if your rails console is not loaded with configuration of the class file containing method bein...
分类:
其他好文 时间:
2014-08-06 01:25:40
阅读次数:
209
1.先使用phpinfo.php文件打印出信息2.找到Loaded Configuration File 根据他的路径去修改php.ini文件3.打开php.ini文件,搜索 short_open_tag = Off 他默认的就是关闭的 ,将他改为On,然后重启apache就可以了本人亲自尝试过,绝...
分类:
其他好文 时间:
2014-08-05 13:46:09
阅读次数:
251
在php中会有2种扩展 一般的mysql都属于extension 而 像xdebug却是zend_extension 错误提示 NOTICE: PHP message: PHP Warning: Xdebug MUST be loaded as a Zend extension 分析: mysql扩展配置如下 extension=...
分类:
其他好文 时间:
2014-07-30 10:14:34
阅读次数:
227