C-C++
文章平均质量分 77
AndroidRecord
这个作者很懒,什么都没留下…
展开
-
关键字 typedef 深入了解
转载于http://thinkerou.com/2015-10/typedef-keyword/ 一、引子:几行代码 为了不浪费时间,先来看看如下三行代码: typedef int arr[10]; typedef void (*pf)(); typedef int* (*pf)(int* (p*)(int*, int*), int*); 如果能准确知道上面三行代码的意义,我想转载 2016-02-22 12:59:50 · 426 阅读 · 0 评论 -
C/C++指针与多维数组的关系
从二维数组切入分析int a[3][4];我们都知道,数组名就是数组的首地址,那么具体这个首地址(指针)是怎样的类型呢? 我们可以做一个实验,让编译器来告诉我们。#include <stdio.h>int main() { int arr[3][4]; /*我们定义一个显然错误的指针类型来接收数组首地址s*/ int *p = arr; return 0; }接下来原创 2016-02-21 09:18:46 · 721 阅读 · 0 评论