码迷,mamicode.com
首页 >  
搜索关键字:maxsize    ( 995个结果
文件分块传输
服务接收端: public bool AppendChunk(string serverFileName, byte[] buff, long offset, out string errMsg) { errMsg = string.Empty; int maxSize =1024 * 1024;/ ...
分类:其他好文   时间:2017-08-21 18:13:29    阅读次数:180
C语言——循环队列的基本运算
#include #include "SeqQue.h" // 循环队列的基本运算 /* const int maxsize = 20; typedef struct cycque { int data[maxsize]; int front, rear; }CycQue; */ // 1. 初始化... ...
分类:编程语言   时间:2017-08-21 00:33:22    阅读次数:214
3_栈
逻辑结构 栈是限定只能在表尾进行插入或删除操作的线性表 “后进先出” 存储结构 顺序栈表示方法: s.top=-1 //栈空条件,也是初始化,栈顶指针为-1 s.top=MaxSize-1 //栈满条件 s.top+1 //栈长 s.data[++s.top]=x //进栈,指针先加1再入栈 x=s ...
分类:其他好文   时间:2017-08-18 11:17:03    阅读次数:156
存储管理
查询预定义表空间: SQL> select TABLESPACE_NAME,CONTENTS from dba_tablespaces; SQL> select FILE_NAME, TABLESPACE_NAME from dba_data_files; 创建新表空间: SQL> create t ...
分类:其他好文   时间:2017-08-15 21:15:45    阅读次数:141
PHP文件上传类
name: up pic: up pic: up pic: up pic: set("path", "./images/"); $up -> set("maxsize", 2000000); $up -> set("allowtype", array("gif", "png", "jpg"... ...
分类:Web程序   时间:2017-08-13 01:08:13    阅读次数:238
#queue队列 #生产者消费者模型
1 #queue队列 #生产者消费者模型 2 3 #queue队列 #有顺序的容器 4 #程序解耦 5 #提高运行效率 6 7 #class queue.Queue(maxsize=0) #先入先出 8 #class queue.LifoQueue(maxsize=0)最后在第一 9 #class ...
分类:其他好文   时间:2017-08-11 21:15:24    阅读次数:136
中缀表达式变为后缀表达式,栈实现
#include #define MaxSize 50 typedef struct{ char data[MaxSize]; int top; }SqStack; void InitStack(SqStack &S){ S.top = -1; } int StackEmpty(SqStack &S... ...
分类:其他好文   时间:2017-08-05 22:48:28    阅读次数:171
oracle 创建用户模板
lplus /nolog conn system/1234@orcl create tablespace aries logging datafile 'e:\oracle\oradata\orcl\aries.dbf' size 32m autoextend on next 32m maxsize ...
分类:数据库   时间:2017-08-05 22:03:55    阅读次数:233
spring 中 ThreadPoolTaskExecutor 的使用
配置文件代码如下: = mainExecutor.maxSize --> ...
分类:编程语言   时间:2017-08-03 23:44:06    阅读次数:325
Python 多线程
Python 多线程多线程相似于同一时候执行多个不同程序。多线程执行有例如以下长处:使用线程能够把占领长时间的程序中的任务放到后台去处理。用户界面能够更加吸引人,这样比方用户点击了一个button去触发某些事件的处理,能够弹出一个进度条来显示处理的进度程序的执行速度可能加快在一些等待的任务实现上如用 ...
分类:编程语言   时间:2017-08-03 09:58:43    阅读次数:244
995条   上一页 1 ... 39 40 41 42 43 ... 100 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!