c/c++
文章平均质量分 64
daydayfat
这个作者很懒,什么都没留下…
展开
-
函数指针
函数指针 说到底还是 指针。 只是 他的 声明 要比 一般至真麻烦些: void *( *func) (int,float); 上面 这个, 定义 func 是一个 函数指针, 它指向的函数 要 接受 参数 (int, float), 并返回 一个 void * 的 返回值。 一个简单例子: #include void hel原创 2013-03-29 15:12:11 · 367 阅读 · 0 评论 -
Logical shift and Arithmetic shift
In most C or C++ compiler, arithmetic shift are adopted. With this, negative number shifting may first looks a little out of routine, or at least that's how I felt. In brief, arithmet原创 2013-04-02 11:38:19 · 2040 阅读 · 0 评论