码迷,mamicode.com
首页 >  
搜索关键字:types    ( 3306个结果
ruby 基础笔记
变量定义(variables):local: time or _time instance: @time class: @@time global $time数据类型(data types)Numeric String Symbol Boolean Array Hashvariabl...
分类:其他好文   时间:2014-05-26 09:39:54    阅读次数:217
python 的var_dump
from __future__ import print_functionfrom types import NoneType__author__ = "Shamim Hasnath"__copyright__ = "Copyright 2013, Shamim Hasnath"__license_...
分类:编程语言   时间:2014-05-26 09:29:50    阅读次数:495
官方文档翻译:Innodb的锁
InnoDBRecord, Gap, and Next-Key Locks考虑到翻译准确性,对于某些特殊名称不做翻译,以免误导;InnoDBhas several types of record-level locks including record locks, gap locks, and n...
分类:数据库   时间:2014-05-23 23:19:29    阅读次数:683
matlab文件读写处理实例(二)——textread批量读取文件
问题:对文件夹下所有文件进行批量读取,跳过文件头部分,读取每个文件数据部分的7,8,9列,保存到变量并且输出到文件。数据:文件夹11m\单个文件格式:DAV1 MARKER NAME66010M001 MARKER NUMBER 7 PR TD HR WS WD RI HI # / TYPES OF...
分类:其他好文   时间:2014-05-23 11:57:28    阅读次数:446
TI C66x DSP中断类型及其优先级
There are four types of interrupts on the CPU. ? Reset ? Maskable ? Nonmaskable ? Exception(异常也可视为中断) These first three types are differentiated by their priorities. The reset interrupt has t...
分类:其他好文   时间:2014-05-22 13:14:59    阅读次数:245
POJ - 1010 STAMPS
题意:  给出n种邮票,每种邮票有自己的面值(面值可能重复)        指定m种“总面值”,对每种“总面值”,求解满足如下条件的组合以达到该“总面值” (1)       所用邮票在n种中可以重复选取 (2)       所用邮票张数〈=4 (3)       尽量多的使用那个不同种类的邮票 Max (Stamp Types) (4)       若有多种方案满足(3...
分类:其他好文   时间:2014-05-21 14:29:54    阅读次数:259
Lock-free vs. wait-free concurrency
There are two types of non-blocking thread synchronization algorithms - lock-free, and wait-free. Their meaning is often confused. In lock-free systems, while any particular computation may be block...
分类:其他好文   时间:2014-05-21 10:27:20    阅读次数:410
ioctl使用
#include<stdio.h> #include<string.h> #include<stdlib.h> #include<errno.h> #include<unistd.h> #include<sys/types.h> #include<sys/socket.h> #include<netinet/in.h> #include<arpa/inet.h> #include<sys/ioct..
分类:其他好文   时间:2014-05-20 18:46:37    阅读次数:260
Classic Abstract Data Types--C
本文内容来自《pointers on C》栈的接口/* Interface for a stack module */#define STACK_TYPE intvoid push(STACK_TYPE value);void pop(void);STACK_TYPE top(void);in...
分类:其他好文   时间:2014-05-18 20:37:48    阅读次数:509
template(3.1)
Nontype Template Parameters非类型模板参数对 function templates 和 class templates 而言,template parameters 并不一定非要是类型(types) 不可,它们也可以是常规的(一般的)数值。当你以类型(types)作为 te...
分类:其他好文   时间:2014-05-10 23:08:54    阅读次数:560
3306条   上一页 1 ... 327 328 329 330 331 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!