码迷,mamicode.com
首页 >  
搜索关键字:class    ( 183544个结果
ZOJ 2971 Give Me the Number;ZOJ 2311 Inglish-Number Translator (字符处理,防空行,strstr)
ZOJ 2971 Give Me the Number题目ZOJ 2311Inglish-Number Translator 题目//两者题目差不多,细节有点点不一样,因为不是一起做的,所以处理方式有一点点不一样——还是前一个方式高端呀。//ZOJ 2971 的AC代码(用了strstr函数):#i...
分类:其他好文   时间:2014-06-27 17:11:36    阅读次数:282
访问者模式之C++实现
#include"stdafx.h"#include#include#includeusingnamespacestd;classVisitor;classElement{protected:stringname;public:Element(stringname){this->name=name;...
分类:编程语言   时间:2014-06-27 17:09:36    阅读次数:200
jquery api 常见api 效果操作例子
addClass_removeClass_toggleClass_hasClass.html 1 2 3 4 method_1.html 5 6 12 13 14 15 无样式16 有样式17 32 33 change_p...
分类:Windows程序   时间:2014-06-27 17:08:22    阅读次数:269
jquery实现 批量右移
1 2 3 4 5 6 7 8 9 21 22 23 24 25 26 27 28 29 ...
分类:Web程序   时间:2014-06-27 17:07:45    阅读次数:226
project notes
1、根目录:String rootPath = application.getRealPath("/");2、文件是否可写: public boolean isCanWrite(String dirPath) { File file = new File(dirPath); if(!file.e.....
分类:其他好文   时间:2014-06-27 17:06:19    阅读次数:171
结构化异常处理(一)
一、错误、bug与异常在.NET术语命名中,“异常”解释为bug、用户输入错误和运行时错误。二、.NET异常处理的作用理想情况下,我们希望将这个错误的名称、消息和其他的有用信息都打进一个明确的包内,这正是结构化异常处理所做的。结构化异常处理方案的优点:1.开发人员现在又了统一的而且对.NET领域内各...
分类:其他好文   时间:2014-06-27 17:05:43    阅读次数:246
VSM and VEM Modules
Information About ModulesCisco Nexus 1000V manages a data center defined by a VirtualCenter. Each server in the data center is represented as a module...
分类:其他好文   时间:2014-06-27 17:04:58    阅读次数:184
[CSDN] OpenCL用于计算机领域的13个经典案例
http://www.csdn.net/article/2013-10-29/2817319-the-application-areas-opencl-can-be-used摘要:当使用加速器和OpenCL时,哪种类型的算法更加快速?来自弗吉尼亚理工大学的Wu Feng教授和他的团队例举了一份算法列...
分类:其他好文   时间:2014-06-27 17:04:18    阅读次数:225
asp.net文件下载
1 protected void btn_Down(object sender, EventArgs e) 2 { 3 string filePath = Server.MapPath("/TradeLog/" + txtDate.Text.Tr...
分类:Web程序   时间:2014-06-27 17:02:31    阅读次数:226
fstream读取文件时如何判断读到文件尾
使用fstream读取文件,什么时候读到文件结束呢。首先想到的是,将现在的位置与文件的长度对比,然后再fstream中无法直接获取文件长度。可以采用如下方法fstream in;in.open("path",ios::in);in.seekg(0,ios::end);int length=in.te...
分类:其他好文   时间:2014-06-27 17:01:50    阅读次数:939
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!