码迷,mamicode.com
首页 >  
搜索关键字:bytes    ( 3829个结果
C#产生不重复随机数
static int GetRandomSeed( ){byte[] bytes = new byte[4];System.Security.Cryptography.RNGCryptoServiceProvider rng = new System.Security.Cryptography.RN...
分类:其他好文   时间:2014-05-12 16:10:44    阅读次数:269
malloc函数
使用语句:extern void *malloc(unsigned int num_bytes);头文件:在TC2.0中可以用malloc.h或 alloc.h (注意:alloc.h 与 malloc.h 的内容是完全一致的),而在Visual C++6.0中可以用malloc.h或者stdlib...
分类:其他好文   时间:2014-05-06 00:32:40    阅读次数:279
X86 Booting Sequence
1.BIOS0xFFFF0電源正常啟動後,x86 CPU 會先執行 0xFFFF0,也就是 BIOS ROM 的進入點。由於 0xFFFF0 ~ 0xFFFFF 只有少的很可憐的 16 bytes,真正的 BIOS code 勢必要擺到其他位置,此時 0xFFFF0 的作用便是 jmp 到該位置執行...
分类:其他好文   时间:2014-05-04 19:38:42    阅读次数:513
c#植物大战僵尸素材提取
string path = textBox1.Text; FileStream fs = File.OpenRead(path); byte[] bytes = new byte[fs.Length]; fs.Read(bytes, ...
分类:其他好文   时间:2014-05-04 09:55:49    阅读次数:402
获取CPU频率
#include #include float get_cpu_clock_speed(){ FILE *fp; char buffer[1024]; size_t bytes_read; char *match; float clock_speed; fp=fo...
分类:其他好文   时间:2014-05-02 14:20:39    阅读次数:392
Oracle:ORA-24324: 未初始化服务句柄 ORA-01090: 正在关闭 - 不允许连接
1.sqlplus/nolog2.SQL> conn / as sysdba已连接到空闲例程。3.SQL> shutdown abortORACLE 例程已经关闭。4.SQL> startupORACLE 例程已经启动。Total System Global Area 591396864 bytes...
分类:数据库   时间:2014-05-02 05:47:08    阅读次数:376
byte[] bytes和string转换
publicstaticstringToHexString(byte[]bytes)//0xae00cf=>"AE00CF"{stringhexString=string.Empty;if(bytes!=null){StringBuilderstrB=newStringBuilder();for(i...
分类:其他好文   时间:2014-05-01 19:08:41    阅读次数:334
linux 挂载硬盘和自动挂载
①挂载:插入硬盘前:fdisk -lDisk /dev/sda: 21.5 GB, 21474836480 bytes255 heads, 63 sectors/track, 2610 cylindersUnits = cylinders of 16065 * 512 = 8225280 bytes...
分类:系统相关   时间:2014-05-01 13:12:23    阅读次数:505
Catch Application Exceptions in a Windows Forms Application
You need to handle theSystem.Windows.Forms.Application.ThreadExceptionevent for Windows Forms. This article really helped me:http://bytes.com/forum/th...
分类:移动开发   时间:2014-04-27 21:10:16    阅读次数:907
3829条   上一页 1 ... 381 382 383
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!