码迷,mamicode.com
首页 >  
搜索关键字:pointer    ( 2176个结果
智能指针
http://blog.csdn.net/hackbuteer1/article/details/7561235智能指针(smart pointer)是存储指向动态分配(堆)对象指针的类,用于生存期控制,能够确保自动正确的销毁动态分配的对象,防止内存泄露。它的一种通用实现技术是使用引用计数(refe...
分类:其他好文   时间:2014-09-16 23:25:41    阅读次数:231
STL之auto_ptr
What's auto_ptr? The auto_ptr type is provided by the C++ standard library as a kind of a smart pointer that helps to avoid resource leaks when excep....
分类:其他好文   时间:2014-09-16 23:25:21    阅读次数:214
differences between null pointer and void pointer.
These are two different concepts, you cannot compare them. What the difference between the skunk and the moonlight?Null pointer is a special reserved ...
分类:其他好文   时间:2014-09-16 06:00:20    阅读次数:216
C++中智能指针的设计和使用
转载请标明出处,原文地址:http://blog.csdn.net/hackbuteer1/article/details/7561235      智能指针(smart pointer)是存储指向动态分配(堆)对象指针的类,用于生存期控制,能够确保自动正确的销毁动态分配的对象,防止内存泄露。它的一种通用实现技术是使用引用计数(reference count)。智能指针类将一个计数器与类指向的对...
分类:编程语言   时间:2014-09-15 17:49:29    阅读次数:254
what a malloc has to do
1) Allocate a chunk of memory big enough to satisfy the request, and return a pointer to it.2) Remember which chunks of ram are in use and which aren'...
分类:其他好文   时间:2014-09-15 14:17:28    阅读次数:134
centos 7 禁用笔记本触摸板设置
安装xorg-x11-apps 包:yum install xorg-x11-apps。终端输入 xinput list找到 PS/2记录后面的IDxinput list? Virtual core pointer id=2 [master pointer (3)]? ? Virtual cor.....
分类:其他好文   时间:2014-09-15 12:44:48    阅读次数:1985
[leecode]Implement strStr()
Implement strStr()Implement strStr().Returns a pointer to the first occurrence of needle in haystack, ornullif needle is not part of haystack.实现String...
分类:其他好文   时间:2014-09-15 00:54:37    阅读次数:185
8086 cpu为什么要把段地址*16+偏移量形成物理地址呢?
8086 cpu为什么要把段地址*16+偏移量形成物理地址呢?这是因为,8086地址线是20位,段寄存器是16位,将段寄存器*16实际上就是向左移动4位,形成20位和8086的二十位地址线匹配. IP(Instruction Pointer):指令指针寄存器,与CS配合使用,可跟踪程序的执行过程;....
分类:其他好文   时间:2014-09-12 18:59:14    阅读次数:189
DYNAMIC_DOWNCAST、STATIC_DOWNCAST、CRuntimeClass和IsKindOf
DYNAMIC_DOWNCAST、STATIC_DOWNCAST、CRuntimeClass和IsKindOfDYNAMIC_DOWNCAST(class, pointer ):如果pointer指针所指向的对象是class类型的,就返回这个指针。否则返回NULL例如 你获取到一个指针 XXX *p...
分类:其他好文   时间:2014-09-11 16:53:12    阅读次数:218
cursor 鼠标样式——属性
取值: [ [ ,]* [ auto | crosshair | default | pointer | move | e-resize | ne-resize | nw-resize | n-resize | se-resize | sw-resize | s-resize | w-resize ...
分类:其他好文   时间:2014-09-10 13:59:40    阅读次数:160
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!