指针数组的问题

      (废话)-----今天在公司实习,听到导师跟一个工程师聊天。讲到一个工程师最重要的品质是什么的问题。工程师给出的答案很有道理。这里跟大家分享下:

他说,一流的工程师会问问题,二流的工程师会解决问题,三流的工程师制造问题。听后感触良多。在网络如此发达的今天,你遇到的问题,前辈肯定也遇到过,并解决了。

我们要做的事能找到你真正的问题所在并能利用网络找出问题,自我学习,自我成长,在这个网络爆炸的社会非常重要。

     好切入真题。。。

      各大公司校招纷纷开始,找了本面试宝典。书上有一道这样的题目:

#include<iostream>
using namespace std;
main()
{
   char* a[] = {"hello","the","world"};
   char** pa = a;
   pa++;
   cout<<*pa<<endl;
}
写出输出结果

这道题主要考察指针数组;这里需要明确几个概念:

指针数组: an array pointers//顾名思义里面存的是地址;本题为3个字符串的首地址
数组指针: a pointer to an array 

举例来说:
指针数组 int *temp[2] is an array 2 pointers to integers.
数组指针 int (*temp)[10] is a pointer to an array of 10 integers.

pa定义为指向指针的指针; a是指针数组的首地址;

 pa=a;//将a赋给p,即pa指向指针数组的首地址 ;

pa++则指向第二个数组元素即“the”的首地址。

*pa//就 输出the.


这里有个不错的问题: int **p;

                                         int *p[1];

              这两个表达式是否相同呢?

我从stackoverflow上找到类似的问题,国外的网友给出的答案很不错,可参考理解下。他们之间大多数情况下可以划等号,当不完全相同。


Does

int **p 

and

int *p[1]

mean the same thing? as both can be passed to functions allowing the change the pointer object, also both can be accessed via p[0], *p ?

Update, thanks for your help, tough Memory management seems different. does the access mechanism remain the same

*eg: p[0] becomes *(p+0) & *p (both pointing to something)

Thanks


   
国外网友给出的解答:  
up vote 7 down vote accepted

Not quite.

int **p;

declares a pointer p, which will be used to point at objects of type int *, ie, pointers to int. It doesn't allocate any storage, or point p at anything in particular yet.

int *p[1];

declares an array p of one pointer to int: p's type can decay to int ** when it's passed around, but unlike the first statement, p here has an initial value and some storage is set aside.


Re. the edited question on access syntax: yes, *p == p[0] == *(p+0) for all pointers and arrays.


Re. the comment asking about sizeof: it deals properly with arrays where it can see the declaration, so it gives the total storage size.

void foo()
{//红色部分为差异
    int **ptr;
    int *array[10];

    sizeof(ptr);   // just the size of the pointer
    sizeof(array); // 10 * sizeof(int *)

    // popular idiom for getting count of elements in array:
    sizeof(array)/sizeof(array[0]);
}

// this would always discard the array size,
// because the argument always decays to a pointer
size_t my_sizeof(int *p) { return sizeof(p); }

引申:
函数与指针也一样
/* function returning pointer to int */ 该函数返回整型指针
int *func(int a, float b);
/* pointer to function returning int */指向函数的指针,该函数返回整型
int (*func)(int a, float b);


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值