由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
JobHunting版 - 指针函数, 函数指针, 头大。。
相关主题
请教一个 c++ member function pointer 问题[合集] 想成为嵌入式程序员应知道的0x10个基本问题 zz
问道C的面试题array of pointers to functions
在子函数内开内存,返回主函数指针然后释放空间是不是很糟糕的(转载)关于找环的那道题目
怎么才能掌握好C++里面的指针和引用?c++ 程序一问
想成为嵌入式程序员应知道的0x10个基本问题 zz一道链表题及其变种
求助,如何才能将一个c++对象封装成一个函数指针。 (转载)C++ Q79: What is the size of a pointer? and why?
问一个c++ 函数指针的问题面试面试官错了怎么办?
My Microsoft Phone Interview请教一个C语言指针奇怪的语法
相关话题的讨论汇总
话题: ptr话题: pointer话题: void话题: 答案话题: 函数指针
进入JobHunting版参与讨论
1 (共1页)
w******1
发帖数: 520
1
下面的这几个是错的么? 都是什么意思啊? 我觉得三个答案都是错的
about pointer to funciton :
how will a pointer to a pointer to a function will be declared
void (*(*ptr[]));
void *ptr[];
void (**ptr[])
s********l
发帖数: 998
2
1,3括号都不对称 当然错了。。。
2 unknown size

【在 w******1 的大作中提到】
: 下面的这几个是错的么? 都是什么意思啊? 我觉得三个答案都是错的
: about pointer to funciton :
: how will a pointer to a pointer to a function will be declared
: void (*(*ptr[]));
: void *ptr[];
: void (**ptr[])

s*****n
发帖数: 162
3
How about
int (*(*ptr))();
ptr is a pointer to a pointer that points to a function which returns int

【在 w******1 的大作中提到】
: 下面的这几个是错的么? 都是什么意思啊? 我觉得三个答案都是错的
: about pointer to funciton :
: how will a pointer to a pointer to a function will be declared
: void (*(*ptr[]));
: void *ptr[];
: void (**ptr[])

w****r
发帖数: 1384
4
this one is right,

【在 s*****n 的大作中提到】
: How about
: int (*(*ptr))();
: ptr is a pointer to a pointer that points to a function which returns int

w******1
发帖数: 520
5
你这个答案, 就是网上给的建议答案。
但是评论中, 没人同意。 所以我就拿不准了。

【在 s*****n 的大作中提到】
: How about
: int (*(*ptr))();
: ptr is a pointer to a pointer that points to a function which returns int

w******1
发帖数: 520
6
你这个答案, 就是网上给的建议答案。
但是评论中, 没人同意。 所以我就拿不准了。

【在 s*****n 的大作中提到】
: How about
: int (*(*ptr))();
: ptr is a pointer to a pointer that points to a function which returns int

r****o
发帖数: 1950
7
int (** ptr)()也可以把.
1 (共1页)
进入JobHunting版参与讨论
相关主题
请教一个C语言指针奇怪的语法想成为嵌入式程序员应知道的0x10个基本问题 zz
void * 和 char * 有区别吗?求助,如何才能将一个c++对象封装成一个函数指针。 (转载)
指针怎么读问一个c++ 函数指针的问题
问道编程题My Microsoft Phone Interview
请教一个 c++ member function pointer 问题[合集] 想成为嵌入式程序员应知道的0x10个基本问题 zz
问道C的面试题array of pointers to functions
在子函数内开内存,返回主函数指针然后释放空间是不是很糟糕的(转载)关于找环的那道题目
怎么才能掌握好C++里面的指针和引用?c++ 程序一问
相关话题的讨论汇总
话题: ptr话题: pointer话题: void话题: 答案话题: 函数指针