码迷,mamicode.com
首页 >  
搜索关键字:name    ( 94827个结果
c++第十章-(多继承与虚继承)
多继承class Person{public: Person(std::string theName); void introduce(); protected: std::string name;};class Teacher : public Person{pub...
分类:编程语言   时间:2014-07-16 20:45:08    阅读次数:177
Struts2返回验证码
配置struts.xml文件 将value改成true 当访问action的时候调用Action类默认不执行execute方法如果是false的话哪么调用action执行execute方法 namespace:是访问action的前缀 extends:可以继承其他包 name:包的名字name:ac...
分类:其他好文   时间:2014-07-16 20:40:37    阅读次数:149
Servlet返回验证码
Web.xml文件 This is the description of my J2EE component This is the display name of my J2EE component GetCheckCode GetCheckCode GetCheckCode /checkc...
分类:其他好文   时间:2014-07-16 20:39:02    阅读次数:125
group by的使用
在sql语句中经常用到group by,但是对其并不是太了解,所以记录下来:select A,cout(*) 数量 from table_name group by A;group by 的使用有一条原则,那就是select 后面的所有列中没有使用聚合函数到必须出现在group by 后面。那么gr...
分类:其他好文   时间:2014-07-16 20:26:17    阅读次数:162
ubuntu 安装pyqt4 eric
tar xvf eric4-4.5.7.tar.gztar xvf eric4-i18n-zh_CN.GB2312-4.5.7.tar.gzcd eric4-4.5.7/python install.pyError: cannot import name Qsci==================...
分类:其他好文   时间:2014-07-16 20:23:11    阅读次数:200
[ISSUE]cannot run on the selected destination
mac 10.7 xcode 4.6.3编译cocos2d-x 3.x 的HelloCpp 的时候,出现如上问题原来越遇到过,一直不知道是什么情况引起的,把它作为xcode的莫名其妙的bug一些解决方法,一切以试为主:1. 修改bundle name, 或者修改product name, 或者修改i...
分类:其他好文   时间:2014-07-16 20:12:25    阅读次数:165
Javascript获取地址栏参数值
采用正则表达式获取地址栏参数:function GetQueryString(name){ var reg = new RegExp("(^|&)"+ name +"=([^&]*)(&|$)"); var r = window.location.search.substr(1).m...
分类:编程语言   时间:2014-07-16 20:11:22    阅读次数:208
openNebula 模板实例化成虚拟机【参数名为VM_NAME】
{ "action": { "perform": "instantiate", "params": { "vm_name": "TEST_vm" } }}
分类:其他好文   时间:2014-07-16 20:03:54    阅读次数:167
Vesions ignore & ld: library not found for -l...
1.递归删除指定目录下的 .git、.svn 文件find . -name .git | xargs rm -frfind . -name .svn | xargs rm -rf第一条倒还不常用,因为用 git 做版本管理的时候,只在根目录下生成一个 .git 目录,删掉这一个就行了~因此,删除 ....
分类:其他好文   时间:2014-07-16 19:55:02    阅读次数:182
sizzle分析记录:getAttribute和getAttributeNode
部分IE游览器下无法通过getAttribute取值? alert(form.getAttribute('name')); IE6、7中错误 alert(form.getAttributeNode('name').nodeValue);看看jQ的解决方案能力判断 support.attributes...
分类:其他好文   时间:2014-07-12 13:43:36    阅读次数:182
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!