码迷,mamicode.com
首页 >  
搜索关键字:temp    ( 7776个结果
Python递归遍历目录下所有文件
#自定义函数:import ospath="D:\\Temp_del\\a"def gci (path): parents = os.listdir(path) for parent in parents: child = os.path.join(path,parent)...
分类:编程语言   时间:2014-07-07 10:08:15    阅读次数:343
将一段含有0的字符数组赋给string
string有个成员函数,assign()可以这样:1 string str;2 str.assign(temp, sizeof(temp));
分类:其他好文   时间:2014-07-02 17:23:54    阅读次数:229
perl true/false
perl treat 0 false, non 0 ture.print "false\n" if 0;print "false\n" if 0;------------------------tureperl treat string empty is false.my $temp = "";pr...
分类:其他好文   时间:2014-07-02 00:41:06    阅读次数:195
SQLServer Temp tables 数据疑问
1. 现象使用Cacti监控,有关于临时表的一个图形可以看到正在使用的临时表Active Temp Tables的数量非常大,并且在非工作时间,也维持在400个左右。感觉非常奇怪,所以追查下!2. 探索首先,先验证下Cacti数据是否准确,已知Cacti数据是从SQLServer的sys.dm_os...
分类:数据库   时间:2014-07-01 21:36:47    阅读次数:389
TempDB--临时表的缓存
--==========================================================================在博客园看到一篇文章《SQLServer Temp tables 数据疑问》,文章中问道在没有任何负载情况下,还有大量的临时表,这是为什么?--==...
分类:数据库   时间:2014-07-01 18:44:42    阅读次数:269
c语言学习之结构篇代码演示样例-输入n个同学的姓名,数学英语成绩,依照平均分从低到高排序并输出
#includevoid main(){const int count = 5;//定义数量struct student{char name[80];float math,eng;float aver;}stu[count],temp;//输入for (int i = 0; i stu[sub].a...
分类:编程语言   时间:2014-07-01 13:32:56    阅读次数:257
多位水仙花数
/** * 水仙花数 * */ public class Daffodil { public static void main(String[] args) { int max = 9999 ; int min = 10 ; for(int x=min;x<max;x++){ String temp = String.valueOf( x ) ; int ...
分类:其他好文   时间:2014-07-01 11:27:48    阅读次数:201
sybase数据库学习笔记(一)
sybase的基本框架 sybase数据库由系统数据库、用户数据库、数据库设备和辅助文件组成。 1、 系统数据库 sybase数据库是多个数据库结构的数据库管理系统。分为系统数据库和用户数据库。 系统数据库是在安装的时候自动创建的,包括一下内容: master数据库:全面控制和管理用户数据库及sybase上的一切操作temp数据库:为临时表和其他临时工作空间提供一个存储区...
分类:数据库   时间:2014-06-30 08:48:06    阅读次数:204
POJ_2299 Ultra-QuickSort【归并排序】
题目链接:http://poj.org/problem?id=2299 题目大意:求出排序过程中的最小交换次数 利用归并排序的分治算法解决此题。 代码: #include #include #include #define N 500001 using namespace std; int a[N]; int temp[N]; long long ans; void merge(in...
分类:其他好文   时间:2014-06-30 08:18:11    阅读次数:230
python中非序列类型期望值拷贝的解决方案
看下面这段代码:#-*-coding:utf-8-*-importcopyclassPresent(object):def__init__(self,str_cmd):self._str_cmd=str_cmdprint"进入Present时的地址:",id(self._str_cmd)defset_value(self):temp="test_cmd"self._str_cmd=copy.deepcopy(temp)defget_value(self):returnself._s..
分类:编程语言   时间:2014-06-29 21:38:46    阅读次数:318
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!