码迷,mamicode.com
首页 >  
搜索关键字:os    ( 139979个结果
HtmlAttribute HTML属性处理类
HtmlAttribute 在HtmlAgilityPack扮演的是一个HTML代码属性的容器,同时提供了用于处理HTML属性的一些功能。一、属性int Line { get; } 获取文档中的此属性的行数。int LinePosition { get; } 获取文档...
分类:Web程序   时间:2014-07-13 12:05:49    阅读次数:176
6.824 Lab 5: Caching Extents
IntroductionIn this lab you will modify YFS to cache extents, reducing the load on the extent server and improving YFS performance. The main challenge...
分类:其他好文   时间:2014-07-13 12:04:34    阅读次数:279
[DevExpress]GridControl 删除所有行
关键代码: /// /// 删除全部行 /// /// GridView public static void ClearRows(this GridView gridView) { bool _mutilSelected = gridView.OptionsSelection.Mul...
分类:其他好文   时间:2014-07-13 12:03:56    阅读次数:161
php导出数据到excel,防止身份证等数字字符格式变成科学计数的方-------缺点,必须使用table tr td
php导出数据到excel,防止身份证等数字字符格式变成科学计数的方时间:2012-08-17 13:50来源:未知作者:硅峰网络-红豆点击:219次在网上查了很多资料知道解决办法大概有两个:一是在身份证字段前加个英文单引号,二是设置Excel的格式为文本格式。 我试用过第一种确实可以显示,但是有个...
分类:Web程序   时间:2014-07-13 12:03:18    阅读次数:224
javascript将10进制数转换为2进制
javascript中将10进制数转换为2进制有两种方式一种是直接用toString(2)这个方法,一种是自己写一个方法换算,以下是代码:var num = 11;var str = num.toString(2); /*将十进制数转变为二进制数*/function dec2bin(num){ v....
分类:编程语言   时间:2014-07-13 12:00:29    阅读次数:241
java中不常见的keyword:strictfp,transient
1.strictfp, 即 strict float point (精确浮点)。 strictfp keyword可应用于类、接口或方法。使用 strictfp keyword声明一个方法时,该方法中全部的float和double表达式都严格遵守FP-strict的限制,符合IEEE-754规范。....
分类:编程语言   时间:2014-07-13 11:59:07    阅读次数:245
CocoStudio 创建简单UI资源并加入?到project
打开CocoStudio UI编辑器新项目,设置画布480*320, 加入?一个标签和一个button控件导出项目,生成所须要的资源文件, 拷贝到cocos2dprojectResources文件夹下添?代码:头文件:#include "cocos2d.h"#include "cocos-ext.h...
分类:其他好文   时间:2014-07-13 11:58:28    阅读次数:212
微软职位内部推荐-SENIOR DEVELOPMENT LEAD
微软近期Open的职位:Job posting title: MSIT Dynamics CRM Sr. Dev Lead (Sr. Dev Lead)Location: China, BeijingAre you interested in shaping the future vision of...
分类:其他好文   时间:2014-07-13 11:57:52    阅读次数:327
Yii CModel中rules验证规则
array(array(‘username’, ‘required’),array(‘username’, ‘length’, ‘min’=>3, ‘max’=>12),array(‘password’, ‘compare’, ‘compareAttribute’=>’password2′, ‘on...
分类:其他好文   时间:2014-07-13 11:57:16    阅读次数:431
C++中数组初始化
#includeusing std::cout;using std::endl;int arr1[5];int arr2[5] = {1,3,5};int main(){int arr3[5];int arr4[5] = {2,4,6};int *pi1 = new int[5];int *pi2 ...
分类:编程语言   时间:2014-07-13 11:54:21    阅读次数:249
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!