[iOS经典面试题]用变量a给出下面的定义

Posted 李洪强

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[iOS经典面试题]用变量a给出下面的定义相关的知识,希望对你有一定的参考价值。

用变量a给出下面的定义

 
 
 
a)一个整型数(An integer)

 

b) 一个指向整型数的指针(A pointer to an integer)  
c) 一个指向指针的的指针,它指向的指针是指向一个整型数(A pointer to a pointer to an integer) 
d) 一个有10个整型数的数组(An array of 10 integers) 
e) 一个有10个指针的数组,该指针是指向一个整型数的(An array of 10 pointers to integers) 
f) 一个指向有10个整型数数组的指针(A pointer to an array of 10 integers) 
g) 一个指向函数的指针,该函数有一个整型参数并返回一个整型数(A pointer to a function that takes an integer as an argument and returns an integer) 
h) 一个有10个函数指针的数组,该指针指向一个函数,该函数有一个整型参数并返回一个整型数( An array of ten pointers to functions that take an integer argument and return an integer )

答案是:

a) int a; // An integer 
b) int *a; // A pointer to an integer 
c) int **a; // A pointer to a pointer to an integer 
d) int a[10]; // An array of 10 integers 
e) int *a[10]; // An array of 10 pointers to integers  (int * 修饰后面对数组)
f) int (*a)[10]; // A pointer to an array of 10 integers 
g) int (*a)(int);// A pointer to a function a that takes an integer argument and returns an integer 
h) int (*a[10])(int); // An array of 10 pointers to functions that take an integer argument and return an integer

以上是关于[iOS经典面试题]用变量a给出下面的定义的主要内容,如果未能解决你的问题,请参考以下文章

C++经典面试题之深入解析const修饰指针的作用

C/C++指针的经典笔试面试题

C/C++指针的经典笔试面试题

33条C#和.NET经典面试题目及答案

五个JS经典面试题

JS经典面试题05-变量连续声明var a = b = 1