码迷,mamicode.com
首页 >  
搜索关键字:pointer    ( 2176个结果
Findbugs
今天发现项目代码加入了findbugs的依赖包,简单的搜索了下: 官方说明: FindBugs is a defect detection tool for Java that uses static analysis to look for more than 200 bug patterns, such as null pointer dereferences, infinite recu...
分类:数据库   时间:2014-06-07 01:19:07    阅读次数:250
VisualStudio下std::string的内存布局
主要成员 union _Bxty { // storage for small buffer or pointer to larger one _Elem _Buf[_BUF_SIZE]; _Elem *_Ptr; } _Bx; size_type _Mysize; // current l...
分类:其他好文   时间:2014-06-06 18:22:13    阅读次数:238
PCI设备内存操作函数总结
1.  ExAllocatePool() 函数说明: ExAllocatePool allocates pool memory of the specified type and returns a pointer to the allocated block. 函数定义: PVOID ExAllocatePool(                             __in  ...
分类:其他好文   时间:2014-06-05 00:23:07    阅读次数:392
c/c++指针总结[pointer summary]
pointer summary
分类:编程语言   时间:2014-06-03 15:30:33    阅读次数:337
IoGetRelatedDeviceObject学习
PDEVICE_OBJECTIoGetRelatedDeviceObject( IN PFILE_OBJECT FileObject )/*++Routine Description: This routine returns a pointer to the actual dev...
分类:其他好文   时间:2014-06-03 11:35:08    阅读次数:294
libvirt 基于C API基本使用案例
1,virConnectGetLibVersionAPI call obtain the version of libvirt software in use on the hostit takes a connection pointer and unsigned long pointer as ...
分类:Windows程序   时间:2014-06-03 08:10:33    阅读次数:440
指针和数组及内存管理
1. 指针和地址TCPL 中给指针的定义是: A pointer is a group of cells (often two or four) that can hold an address .int value = 10;int *pvalue = &value;上面这个语句的内存模型是:注意...
分类:其他好文   时间:2014-06-02 18:07:49    阅读次数:315
Linux 禁用触摸板
1,首先需要查看触摸板: 命令:xinput list 结果: ? Virtual core pointer id=2 [master pointer (3)] ? ? Virtual core XTEST pointer id=4 [slave poin...
分类:系统相关   时间:2014-06-02 10:07:16    阅读次数:362
LeetCode: Implement strStr() [027]
【题目】Implement strStr().Returns a pointer to the first occurrence of needle in haystack, ornullif needle is not part of haystack.【题意】实现库函数strStr(), 功能是...
分类:其他好文   时间:2014-05-31 04:44:14    阅读次数:218
Copy List with Random Pointer
A linked list is given such that each node contains an additional random pointer which could point to any node in the list or null.Return a deep copy ...
分类:其他好文   时间:2014-05-30 15:07:49    阅读次数:260
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!