码迷,mamicode.com
首页 >  
搜索关键字:read    ( 19693个结果
Remarks on a preprint
Page 2 Line 1, "reads" should be "read".Page 2 Line 5, "are initial velocity and initial magnetic field" should be"are initial velocity and initial ma...
分类:其他好文   时间:2014-07-31 16:47:06    阅读次数:217
mmap、msync
普通文件被映射到进程地址空间后,进程可以像访问普通内存一样对文件进行访问,不必再调用read(),write()等操作。刷新变化函数msync()进程在映射空间的对共享内容的改变并不直接写回到磁盘文件中,往往在调用munmap()后才执行该操作。可以通过调用msync()函数来实现磁盘文件内容与共享...
分类:其他好文   时间:2014-07-31 16:42:56    阅读次数:151
xtu read problem training B - Tour
B -TourTime Limit:1000MSMemory Limit:65536KB64bit IO Format:%I64d & %I64uDescriptionJohn Doe, a skilled pilot, enjoys traveling. While on vacation, he...
分类:其他好文   时间:2014-07-31 13:05:16    阅读次数:287
xtu read problem training A - Dividing
A -DividingTime Limit:1000MSMemory Limit:10000KB64bit IO Format:%I64d & %I64uDescriptionMarsha and Bill own a collection of marbles. They want to spli...
分类:其他好文   时间:2014-07-31 12:51:46    阅读次数:192
将文件以二进制的形式保存到数据库中
主要应用HttpPostedFile类的InputStream属性、Stream类的read方法和Byte数据类型。首先获取上传数据文件的名称、大小和类型,建立一个访问客户端上传文件的对象HttpPostedFile和一个数据流对象Stream,然后使用数据流Stream对象将上传文件以二进制形式的...
分类:数据库   时间:2014-07-31 12:24:46    阅读次数:413
随机数
1到4的随机数Random Random1 = new Random(); int i = Random1.Next(1,4); Console.WriteLine(i); Console.ReadKey();
分类:其他好文   时间:2014-07-31 09:41:45    阅读次数:209
控制台
输出:Console.Write("hello");换行输出:Console.WriteLine("hello");获取输入的值:Console.ReadLine()控制台不关闭:Console.ReadKey();占位符:Console.WriteLine("Sum:{1} Minus:{0} R...
分类:其他好文   时间:2014-07-31 09:35:45    阅读次数:217
configParse 模块直接用
#!/bin/envpython #-*-coding:utf-8-*- fromConfigParserimportConfigParser importjson defgetConfigObject(filename): """获得配置文件对象 """ _config_=ConfigParser() _config_.read(filename) return_config_ defgetConfigJson(filename,sections): """返回对应sections..
分类:其他好文   时间:2014-07-31 03:07:56    阅读次数:267
OI中整数的读入优化
将整数一个字符一个字符地读入,再转成整数,比直接作为整数读入快。在读入大规模的整数数据时比较有效。代码如下:inline void read_int(int &num){ char c; while (c = getchar(), c '9'); num = c - '0'; whil...
分类:其他好文   时间:2014-07-30 23:20:45    阅读次数:507
设置mysql隔离级别
1.查看当前会话隔离级别select @@tx_isolation;2.查看系统当前隔离级别select @@global.tx_isolation;3.设置当前会话隔离级别set session transaction isolatin level repeatable read;4.设置系统当前...
分类:数据库   时间:2014-07-30 23:17:25    阅读次数:298
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!