码迷,mamicode.com
首页 >  
搜索关键字:con    ( 2749个结果
精通javascript(看书笔记)
变量的类型检查 //检测类型 var str = "Hello World"; if (typeof str=="string") {//使用typeof来判断对象类型的一个例子 } if (str.con...
分类:编程语言   时间:2015-05-24 12:45:35    阅读次数:128
raw socket 发送数据包
TRawSocket = class(TObject)private buf: array[0..BUFLEN - 1] of char; FdwNotifyWnd: Cardinal; hsocket: Cardinal; str: string;public con...
分类:其他好文   时间:2015-05-23 11:18:23    阅读次数:160
Linux下安装wine
Linux下安装wine 方法1: wine 下载地址:http://download.csdn.net/detail/xy010902100449/8728635 进入安装目录 tar -jxvf wine-1.7.33.tar.bz2 cd wine-1.7.33 ./configure 这个时候会提示一堆的错误,按照提示安装 apt-get install flex bisons 假设这连个依赖库不能下载,那可能就是你的Linux的源不对,可以参照我上一篇博客更新自己Linux的源。 ./con...
分类:Windows程序   时间:2015-05-22 17:04:47    阅读次数:158
Missing Opportunities for Polymorphism
Missing Opportunities for PolymorphismKirk Pepperdine POLYMORPHiSM iS ONE OF THE GRAND iDEAS that is fundamental to OO. The word, taken from Greek, means many (poly) forms (morph). In the con- text of...
分类:其他好文   时间:2015-05-22 09:39:19    阅读次数:140
News of the Weird: Testers Are Your Friends
News of the Weird: Testers Are Your FriendsBurk HufnagelWHETHER THEY CALL THEMSELVES Quality Assurance or Quality Con- trol, many programmers call them Trouble. In my experience, programmers often have...
分类:其他好文   时间:2015-05-22 09:39:09    阅读次数:125
Openstack安装
一.准备工作:系统安装系统安装参考这篇博文http://oldboy.blog.51cto.com/2561410/1564620即可(可以使用Centos6.4)2.系统安装好后,设置系统参数1.修改网卡信息网卡1[root@linux-node1~]#cat/etc/sysconfig/network-scripts/ifcfg-eth0DEVICE=eth0TYPE=EthernetONBOOT=yesNM_CON..
分类:其他好文   时间:2015-05-21 19:48:07    阅读次数:241
MySql的max_connections和max pool的设置
这几天工作当中,在使用mysql数据库的时候,碰到了too many connections的问题和timeout expired的问题,经过尝试,稍作总结,希望能够帮到需要的朋友;在测试当中发现,1:too many connections的错误会在max pool size的值大于max_con...
分类:数据库   时间:2015-05-20 17:58:42    阅读次数:199
struts2的DefaultActionMapper
DefaultActionMapper是ActionMapper的实现类 其中一个用法是解析url请求 然后把信息封装成一个ActionMapping, ActionMapping对应一个Action,比如Action的name,namespace,method等信息 public ActionMapping getMapping(HttpServletRequest request, Con...
分类:移动开发   时间:2015-05-20 16:26:14    阅读次数:239
ubuntu 制作deb 包
单个执行文件怎么打包成deb?[已解决]7楼careone正解!2013-11-16 13:30韶华倾负lcyxv|分类:操作系统/系统故障|浏览338次分享到:2013-11-16 21:38提问者采纳1 下载一个其他的 deb 软件包,解压缩后得到2个压缩包: data.tar.gz , con...
分类:系统相关   时间:2015-05-20 12:56:27    阅读次数:148
C++强制类型转换操作符 const_cast
const_cast也是一个强制类型转换操作符。《C++ Primer》中是这样描述它的:1.将转换掉表达式的const性质。2.只有使用const_cast才能将const性质性质转化掉。试图使用其他三种形式的强制转换都会导致编译时的错误。(添加const还可以用其他转换符,如static_con...
分类:编程语言   时间:2015-05-19 23:58:45    阅读次数:387
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!