这两天看Linux设备模型的kobject结构,整个人都不好了,老是搞错一些东西~感觉还是有必要好好在复习一下基础知识。
1、指针数组与数组指针
这两个名字不同当然所代表的意思也就不同。我刚开始看到这就吓到了,主要是中文太博大精深了,整这样的简称太专业了,把人都绕晕了。从英文解释或中文全称看就比较容易理解。
指针数组:array of pointers,即用于存储指针的数组,也就是数组元素都是指针
数组指针:a pointer to an array,即指向数组的指针
还要注意的是他们用法的区...
分类:
编程语言 时间:
2015-06-05 10:26:54
阅读次数:
211
* 读作 pointer to,从右向左读 * const p 变量p存放在read-only数据段,p为常量指针,p只用于读操作, 告诉编译器,p仅用做右值;读作:p is const pointer to const *p 变量p存放在栈区;*p不一定为常量区,但*p只用于读操作,告诉编译...
分类:
其他好文 时间:
2015-06-03 21:14:49
阅读次数:
105
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 ...
分类:
编程语言 时间:
2015-06-03 17:28:25
阅读次数:
134
So fun! It connects algorithm(regex) with real world usages!So basically speaking, C:pointer syntax, #include\scanf\typedef; Java: import\public class...
分类:
其他好文 时间:
2015-06-03 07:20:29
阅读次数:
156
1 neo4j 中节点和关系的物理存储模型1.1 neo4j存储模型 The node records contain only a pointer to their first property and their first relationship (in what is oftenterme...
分类:
数据库 时间:
2015-06-02 13:06:49
阅读次数:
148
[转]浅谈C/C++内存泄露及其检测工具对于一个c/c++程序员来说,内存泄漏是一个常见的也是令人头疼的问题。已经有许多技 术被研究出来以应对这个问题,比如 Smart Pointer,Garbage Collection等。Smart Pointer技术比较成熟,STL中已经包含支持Smart P...
分类:
其他好文 时间:
2015-06-02 13:06:46
阅读次数:
94
1、关于nil和Nil及NULL的区别:nil: A null pointer to an Objective-C object. ( #define nil ((id)0) ) nil 是一个对象值。
Nil: A null pointer to an Objective-C class.
NULL: A null pointer to anything else. ( #define NUL...
分类:
编程语言 时间:
2015-06-01 16:58:26
阅读次数:
182
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 of the list.
基本思路:
三趟扫描。
第一趟,复制节点。并将复制的节点...
分类:
其他好文 时间:
2015-06-01 13:23:32
阅读次数:
112
win git error init_cheap:VirtualAlloc pointer is null, Win32 error 487标签(空格分隔): git在idea利用git进行代码更新时遇到的问题,google了一下,早StackOverflow找到解决办法,在此share一下Error messageE:\vipshop\storm-sql>git pull origin joeywen...
分类:
Windows程序 时间:
2015-05-29 20:25:33
阅读次数:
3227