码迷,mamicode.com
首页 >  
搜索关键字:instance    ( 6546个结果
Ruby中访问控制符public,private,protected区别总结
重点关注private与protectedpublic默认即为public,全局都可以访问,这个不解释privateC++, “private” 意为 “private to this class”, 但是Ruby中意为 “private to this instance”.意思是:C++中,对于类...
分类:其他好文   时间:2014-07-11 21:00:48    阅读次数:234
单例与多线程
一。饿汉模式public class Singleton{ private static Singleton instance = new Singleton(); private Singleton(){ ...
分类:编程语言   时间:2014-07-11 20:27:47    阅读次数:214
获取sqlserver安装路径 得到SQL中的各种目录
1、selectfilenamefrommaster..sysfiles2、master..xp_instance_regreadN'HKEY_LOCAL_MACHINE',N'SOFTWARE\Microsoft\MSSQLServer\Setup',N'SQLPath'--得到SQL中的各种目录...
分类:数据库   时间:2014-07-11 18:24:51    阅读次数:245
Mysql一些复杂的语句
1.查找重复的行SELECT * FROM blog_user_relation a WHERE (a.account_instance_id,a.follow_account_instance_id) IN (SELECT account_instance_id,follow_account_in...
分类:数据库   时间:2014-07-11 10:46:13    阅读次数:228
Could not open Selected VM debug port (8700)
在运行项目的时候,eclipse弹出提示框“Could not open Selected VM debug port (8700). Make sure you do not have another instance of DDMS or of the eclipse plugin running. If it's being used by something else, choose a new port number in the preferences.” 在终端输入:netstat -ano ...
分类:其他好文   时间:2014-07-10 23:03:07    阅读次数:432
给python类动态添加方法(method)
群里有人问如何做到def foo(): passclass Bar(object): passBar.set_instance_method(foo)b = Bar()b.foo()这个其实还是比较简单的, 只要写个函数给类设置属性即可, 可根据需求是否用函数包装下, 或者用static...
分类:编程语言   时间:2014-07-10 17:05:22    阅读次数:190
实现Singleton模式
设计一个类,我们只能生成该类的一个实例。单线程可用,多线程不安全:public class Singleton { private static Singleton instance = null; private Singleton() { } public static ...
分类:其他好文   时间:2014-07-10 16:24:37    阅读次数:145
AWS--EC2初尝
环境是Mac OSX。尝试了一下amazon的EC2服务,注册基本比较简单,需要一张信用卡。进入控制台后选择EC2,点击launch instance,选择free tier的Amazon linux,一路点下去。比较重要的是保存好key pair,之后连接主机需要。网上看是以.pem为后缀的,但我...
分类:其他好文   时间:2014-07-09 15:41:11    阅读次数:212
Exception sending context initialized event to listener instance of class
1、错误描述 严重:Exception sending context initialized event to listener instance of class           org.springframework.web.util.Log4jConfigListener            java.lang.IllegalStateException:Web app roo...
分类:其他好文   时间:2014-07-09 12:36:49    阅读次数:200
jsp-->self-defined tag with function tag in taglib
一.WEB-INFO下的*.tld自定义标签描述文件PAFTaglib.tld<?xmlversion="1.0"encoding="UTF-8"?><taglibxmlns="http://java.sun.com/xml/ns/javaee"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xsi:schemaLocation="http://java.sun.com/xml/ns/javaeehttp://..
分类:Web程序   时间:2014-07-08 10:03:44    阅读次数:246
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!