上一页 1 ··· 29 30 31 32 33 34 35 36 37 ··· 84 下一页

2013年12月13日

JSP 网页格式判定执行哪一块html

摘要: JSP 网页格式判定执行哪一块html 阅读全文

posted @ 2013-12-13 15:31 love so much 阅读(201) 评论(0) 推荐(0)

幻世(OurDream)2D图形引擎使用教程9——处理操作输入(3)

摘要: 声明:本教程版权归Lizcst Software Lab所有,欢迎转载,但是转载必须保留本段声明文字,并注明文章来源:http://blog.csdn.net/kflizcst谢谢合作! 现在我们该学习如果检测按键操作并作出反馈了。在这里按键操作包括用户在鼠标上的按键操作,以及用户在键盘上的按键操作。这篇教程我们将一起介绍,因为幻世引擎中并不区分这两种不同设备上接收到的操作,而是将它们统一定义为按键操作,只需要通过一个函数,就可以完成所有按键类操作的事件的接收。 幻世引擎提供了KeyDown、KeyUp和GetTheKeyState函数来帮助开发者检测按键的状态,这些函数的区别... 阅读全文

posted @ 2013-12-13 15:28 love so much 阅读(260) 评论(0) 推荐(0)

版本

摘要: 1234// 当前系统支持的最小版本__IPHONE_OS_VERSION_MIN_REQUIRED// 当前系统支持的最大版本__IPHONE_OS_VERSION_MAX_ALLOWED比如用 iPhone OS SDK 3.1.2 编译的程序12__IPHONE_OS_VERSION_MIN_REQUIRED == __IPHONE_3_0__IPHONE_OS_VERSION_MAX_ALLOWED == __IPHONE_3_1这时,我们可以在程序中使用下面类似的 $ifdef 语句: 12345#if __IPHONE_OS_VERSION_MAX_ALLOWED > __I 阅读全文

posted @ 2013-12-13 15:24 love so much 阅读(274) 评论(0) 推荐(0)

jquery遍历筛选数组的几种方法和遍历解析json对象

摘要: jquerygrep()筛选遍历数组 $().ready( function(){ var array = [1,2,3,4,5,6,7,8,9]; var filterarray = $.grep(array,function(value){ return value > 5;//筛选出大于5的 }); for(var i=0;i$('span[price] input[type=text]') :拿取下面的input元素$('div',$(this).parents('div:first')):拿取该div的上(至少都是父节点)的第一个 阅读全文

posted @ 2013-12-13 15:20 love so much 阅读(407) 评论(0) 推荐(0)

windows api 梳理

摘要: PathMatchSpec FunctionSearches a string using a Microsoft MS-DOS wild card match type.SyntaxBOOLPathMatchSpec(LPCTSTRpszFileParam,LPCTSTRpszSpec);ParameterspszFileParam[in]Pointer to a null-terminated string of maximum length MAX_PATH that contains the path to be searched.pszSpec[in]Pointer to a nul 阅读全文

posted @ 2013-12-13 15:13 love so much 阅读(310) 评论(0) 推荐(0)

搜书利器 -- 壹搜网

摘要: http://www.xyiso.com/ 多说无益,动手去试试就知道了! 阅读全文

posted @ 2013-12-13 15:09 love so much 阅读(501) 评论(0) 推荐(0)

openstack ovs-gre 网速慢解决方案

摘要: Hint: if you want to check if this answer will solve your issue, execute ifconfig eth0 mtu 1400 on the instance and check the speed.Edit the file: /etc/quantum/dhcp_agent.ini and set:dnsmasq_config_file=/etc/neutron/dnsmasq-neutron.confCreate and edit file /etc/neutron/dnsmasq-neutron.conf and put . 阅读全文

posted @ 2013-12-13 15:05 love so much 阅读(464) 评论(0) 推荐(0)

JVM 运行时数据区

摘要: 翻译人员: 铁锚 翻译时间: 2013年11月11日 原文链接:What exactly is null in Java?让我们先来看下面的语句:String x = null;1. 这个语句到底做了些什么? 让我们回顾一下什么是变量,什么是变量值。一个常见的比喻是 变量相当于一个盒子。如同可以使用盒子来储存物品一样,您可以使用一个变量来存储一个值。当声明一个变量时,我们需要设置其类型。 在Java中变量分为两大类型: 原始值(primitive)与引用值(reference). 声明为原始类型的变量,存储的是实际的值;声明为引用类型的变量,存储的是实际对象的地址(指针,引用).... 阅读全文

posted @ 2013-12-13 15:02 love so much 阅读(266) 评论(0) 推荐(0)

基于集合成工控机Ubuntu系统安装分区详解

摘要: 基于集合成工控机Ubuntu系统安装分区详解硬件描述:双核的CPU,128G的固态硬盘软件描述:使用Ubuntu12.04系统,内核3.8.0-29版本,QT4.8.1版本 1、新建分区表/dev/sda在该分区表上添加新分区(系统挂载点)2、在新分区下添加子分区 分区容量 200M Ext4日志文件系统 挂载点 /boot 主分区 分区容量 5000M Ext4日志文件系统 挂载点 / 逻辑分区 分区容量 4000M Ext4日志文件系统 挂载点 SWAP 主分区 分区容量 XM(任意大小大于10G)Ext4日志文件系统 挂载点 /home 逻辑分区 分区容量 15000M Ext... 阅读全文

posted @ 2013-12-13 14:58 love so much 阅读(621) 评论(0) 推荐(0)

MySql连接问题

摘要: 今天想通过命令连接到另外一台主机的Mysql命令:mysql -h ip -u username -pEnterPassWord: password连接成功 阅读全文

posted @ 2013-12-13 14:55 love so much 阅读(135) 评论(0) 推荐(0)

上一页 1 ··· 29 30 31 32 33 34 35 36 37 ··· 84 下一页

导航